Each time the script runs, i'm getting the following in an email:
"mysqldump: unknown option '--routines'
du: WARNING: use --si, not -H; the meaning of the -H option will soon
change to be the same as that of --dereference-args (-D)"
The script is running fine, and i'm also getting success emails sent to me. (i'm geting two emails each time script runs. one success/one error)
what am I missing?
It really would have helped to google for the errors ...
The option --routines is used for fullschema. This option was added in MySQL 5.1.2. Therefore, you have two choices, either update mysql or turn off fullschema.
The second one you will find in bugs. Maybe I add a version check for mysql for the first issue.
Please tell me if everything else is as expected.
as you suggested, turning off fullschema fixed the first error. Second error I will ignore now that I know it's not causing any problems.
everything else works brilliantly
thanks