Hi,

Am Fri, Oct 28, 2005 at 08:28:31AM +0700 schrieb frank folgendes:
> case "$1" in
>   before)
>     echo Before backup job processing...
>     rm -f $fifo 2>&1 < /dev/null
>     mkfifo $fifo 2>&1 < /dev/null
>     echo Dumping $database to fifo: $fifo
>     mysqldump --user=$user --password=$password $database & > $fifo 2>&1 < 
> /dev/null
>     echo Done.
>     ;;

maybe the line with mysqldup must be:

mysqldump --user=$user --password=$password $database > $fifo 2>&1 <
/dev/null &

(without the line break)


Bye,
                        Rainer Martin


-- 
Passwords are like underwear. You shouldn't leave them out where people
can see them. You should change them regularly. And you shouldn't loan
them out to strangers.


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to