X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fmysql;h=569b0a206d21dc4b509539fd969c2ce6e9d181e3;hb=02ffef7501e137ea83563b1b16937e938d3b8c4d;hp=8283ba4a00ac86add0dcbcf42a4d7617f3d02222;hpb=a56165ce12dbf68ee8522aa5bf0c40aa7928e399;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/mysql b/handlers/mysql index 8283ba4..569b0a2 100644 --- a/handlers/mysql +++ b/handlers/mysql @@ -3,21 +3,41 @@ # getconf backupdir /var/backups/mysql -getconf configfile /etc/mysql/debian.cnf getconf databases all -getconf compress yes -getconf dbusername -getconf dbpassword +getconf ignores getconf dbhost localhost -getconf hotcopy yes +getconf hotcopy no getconf sqldump no -getconf user root +getconf compress yes getconf vsname +# authentication: +getconf user +getconf dbusername +getconf dbpassword +getconf configfile /etc/mysql/debian.cnf + +if [ "$user" == "" ]; then + userset=false; + user=root; +else + userset=true; + userhome=`getent passwd "$user" | awk -F: '{print $6}'` + [ -f $userhome/.my.cnf ] || fatal "Can't find config file in $userhome/.my.cnf" +fi + +## Prepare ignore part of the command +## This only works for mysqldump at the moment + +ignore='' +for i in $ignores; do + ignore="$ignore --ignore-table=$i" +done + # If vservers are configured, decide if the handler should # use them or if it should just operate on the host -if [ "$VSERVERS" = "yes" ] +if [ "$vservers" = "yes" ] then if [ ! -z $vsname ] then @@ -28,11 +48,16 @@ then fi fi -# Check to make sure that the specified vserver exists +# If needed, make sure that the specified vserver exists and is running. if [ $usevserver ] then + info "examining vserver '$vsname'" + # does it exist ? vroot="$VROOTDIR/$vsname" [ -d $vroot ] || fatal "vserver '$vsname' does not exist at '$vroot'" + # is it running ? + running=`$VSERVERINFO $vsname RUNNING` + [ $running = 1 ] || fatal "vserver $vsname is not running." fi # create backup dirs, the vroot variable will be empty if no vsname was specified @@ -51,17 +76,33 @@ else [ "$hotcopy" == "no" -o -d $hotdir ] || mkdir -p $hotdir fi +####################################################################### +## AUTHENTICATION + +# +# one of three authentication methods: +# 1. setting the user, so that /home/user/.my.cnf is used. +# 2. specifying the user and password in the handler config, +# which generates a temporary .my.cnf in /root/.my.cnf +# 3. specify the config file with --defaults-file +# (this option DOESN'T WORK WITH MYSQLHOTCOPY) +# + # create .my.cnf # only if dbusername and dbpassword specified. -# we create a tmp file because we don't want to have to +# we create a tmp file because we don't want to # specify the password on the command line. defaultsfile="" if [ "$dbusername" != "" -a "$dbpassword" != "" ]; then - mycnf="/tmp/backupninja.$$.my.cnf" + home=`getent passwd "root" | awk -F: '{print $6}'` + [ -d $home ] || fatal "Can't find root's home directory ($home)." + mycnf="$home/.my.cnf" if [ -f $mycnf ]; then - debug "rm $mycnf" - rm $mycnf + # rename temporarily + tmpcnf="$home/my.cnf.disable" + debug "mv $mycnf $tmpcnf" + mv $mycnf $tmpcnf fi oldmask=`umask` umask 077 @@ -69,32 +110,33 @@ if [ "$dbusername" != "" -a "$dbpassword" != "" ]; then # auto generated backupninja mysql conf [mysql] user=$dbusername -password=$dbpassword +password="$dbpassword" [mysqldump] user=$dbusername -password=$dbpassword +password="$dbpassword" [mysqlhotcopy] user=$dbusername -password=$dbpassword +password="$dbpassword" EOF umask $oldmask - defaultsfile="--defaults-file $mycnf" -else - # otherwise, use $configfile - defaultsfile="--defaults-file $configfile" + defaultsfile="--defaults-file=$mycnf" +elif [ "$userset" == "false" ]; then + # if user is set, don't use $configfile + defaultsfile="--defaults-file=$configfile" fi +####################################################################### ## HOT COPY if [ "$hotcopy" == "yes" ]; then if [ "$databases" == "all" ]; then if [ $usevserver ] then - execstr="$VSERVER $vsname exec $MYSQLHOTCOPY $defaultsfile --quiet --allowold --regexp /.\*/./.\*/ $hotdir" + execstr="$VSERVER $vsname exec $MYSQLHOTCOPY --quiet --allowold --regexp /.\*/./.\*/ $hotdir" else - execstr="$MYSQLHOTCOPY $defaultsfile --quiet --allowold --regexp /.\*/./.\*/ $hotdir" + execstr="$MYSQLHOTCOPY --quiet --allowold --regexp /.\*/./.\*/ $hotdir" fi debug "su $user -c '$execstr'" if [ ! $test ]; then @@ -112,9 +154,9 @@ if [ "$hotcopy" == "yes" ]; then for db in $databases; do if [ $usevserver ] then - execstr="$VSERVER $vsname exec $MYSQLHOTCOPY $defaultsfile --allowold $db $hotdir" + execstr="$VSERVER $vsname exec $MYSQLHOTCOPY --allowold $db $hotdir" else - execstr="$MYSQLHOTCOPY $defaultsfile --allowold $db $hotdir" + execstr="$MYSQLHOTCOPY --allowold $db $hotdir" fi debug "su $user -c '$execstr'" if [ ! $test ]; then @@ -131,7 +173,8 @@ if [ "$hotcopy" == "yes" ]; then done fi fi - + +########################################################################## ## SQL DUMP if [ "$sqldump" == "yes" ]; then @@ -147,9 +190,9 @@ if [ "$sqldump" == "yes" ]; then for db in $databases; do if [ $usevserver ] then - execstr="$VSERVER $vsname exec $MYSQLDUMP $defaultsfile --lock-tables --complete-insert --add-drop-table --quick --quote-names $db > $vroot$dumpdir/${db}.sql" + execstr="$VSERVER $vsname exec $MYSQLDUMP $defaultsfile --lock-tables --complete-insert --add-drop-table --quick --quote-names $ignore $db > $vroot$dumpdir/${db}.sql" else - execstr="$MYSQLDUMP $defaultsfile --lock-tables --complete-insert --add-drop-table --quick --quote-names $db > $dumpdir/${db}.sql" + execstr="$MYSQLDUMP $defaultsfile --lock-tables --complete-insert --add-drop-table --quick --quote-names $ignore $db > $dumpdir/${db}.sql" fi debug "su $user -c '$execstr'" if [ ! $test ]; then @@ -172,9 +215,14 @@ if [ "$sqldump" == "yes" ]; then fi # clean up tmp config file -if [ -f "$mycnf" ]; then +if [ "$dbusername" != "" ]; then + ## clean up tmp config file debug "rm $mycnf" rm $mycnf + if [ -f "$tmpcnf" ]; then + debug "mv $tmpcnf $mycnf" + mv $tmpcnf $mycnf + fi fi return 0