mysql --defaults-file stuff.
authorElijah Saxon <elijah@riseup.net>
Wed, 1 Jun 2005 22:44:04 +0000 (22:44 +0000)
committerElijah Saxon <elijah@riseup.net>
Wed, 1 Jun 2005 22:44:04 +0000 (22:44 +0000)
backupninja
changelog
etc/backup.d/example.mysql
handlers/mysql

index a105a5bf3eef7cc06b2d0d141828d03d1bcf73fa..70c6640ae4dc3a9bdbdb7f433f3a7806fb046fad 100755 (executable)
@@ -3,7 +3,7 @@
 # B A C K U P N I N J A   /()/
 #                         `\|
 #
 # B A C K U P N I N J A   /()/
 #                         `\|
 #
-# Copyright (C) 2004 riseup.net -- property is theft.
+# Copyright (C) 2004-05 riseup.net -- property is theft.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -429,7 +429,7 @@ getconf RSYNC /usr/bin/rsync
 getconf vservers no
 getconf VSERVERINFO /usr/sbin/vserver-info
 getconf VSERVER /usr/sbin/vserver
 getconf vservers no
 getconf VSERVERINFO /usr/sbin/vserver-info
 getconf VSERVER /usr/sbin/vserver
-getconf VROOTDIR `$VSERVERINFO info SYSINFO |grep vserver-Rootdir | awk '{print $2}'`
+getconf VROOTDIR `if [ -f "$VSERVERINFO" ]; then $VSERVERINFO info SYSINFO |grep vserver-Rootdir | awk '{print $2}'; fi`
 
 if [ ! -d "$configdirectory" ]; then
        echo "Configuration directory '$configdirectory' not found."
 
 if [ ! -d "$configdirectory" ]; then
        echo "Configuration directory '$configdirectory' not found."
@@ -443,8 +443,8 @@ if [ "$UID" != "0" ]; then
        exit 1
 fi
 
        exit 1
 fi
 
-if [ "$VSERVERS" = "yes" -a ! -d $VROOTDIR ]; then
-        echo "vservers option set in config, but $VROOTDIR is not a directory!"
+if [ "$vservers" == "yes" -a ! -d "$VROOTDIR" ]; then
+       echo "vservers option set in config, but $VROOTDIR is not a directory!"
        fatal "vservers option set in config, but $VROOTDIR is not a directory!"
 fi
 
        fatal "vservers option set in config, but $VROOTDIR is not a directory!"
 fi
 
index c3f9dca42268589c13750ab8d96e84b5aa57ccd5..78f67a865846a744cfacac5088bbb1fc62171a62 100644 (file)
--- a/changelog
+++ b/changelog
@@ -17,9 +17,9 @@ version 0.x -- xxxxxxxxxxxxx
                added "bandwidthlimit" option
        example.dup example config file for duplicity handler 
        added trac (http://trac.edgewall.com/) environment handler (thanks Charles Lepple!)
                added "bandwidthlimit" option
        example.dup example config file for duplicity handler 
        added trac (http://trac.edgewall.com/) environment handler (thanks Charles Lepple!)
-       added configfile option to mysql handler (thanks bonniot!)
-               uses /etc/mysql/debian.cnf by default
-           now, an empty /etc/backup.d/01.mysql file is all you need
+       added configfile option to mysql handler
+        the default is /etc/mysql/debian.cnf. with this, 
+               sqldump doesn't need dbusername. (hotcopy still does).
 
 version 0.5 -- April 12 2005
        rdiff handler works when remote sshd has a banner
 
 version 0.5 -- April 12 2005
        rdiff handler works when remote sshd has a banner
index 4be2428d8df8b01572adbcd351f4e7586a73fcb2..e0559fe8bdac8e57c78d59ba9fb4951528674ff2 100644 (file)
@@ -1,24 +1,31 @@
-## backupninja mysql config file ##
+### backupninja mysql config file ###
 
 
-dbhost      = localhost
 databases   = all
 backupdir   = /var/backups/mysql
 databases   = all
 backupdir   = /var/backups/mysql
-hotcopy     = yes
-sqldump     = no
+hotcopy     = no
+sqldump     = yes
 compress    = yes
 
 compress    = yes
 
-## authentication ##
+### authentication ###
 
 
-configfile = /etc/mysql/debian.cnf
-
-# or...
-# dbusername  = <dbuser>
-# dbpassword  = <dbpassword>
-
-# or...
-# user = root
+# three authentication methods:
+#
+# 1. setting the user, so that /home/user/.my.cnf is used.
+# user = some-unix-user
+#
+# 2. specifying the mysql dbuser and dbpassword,
+#    which generates a temporary .my.cnf in /root/.my.cnf
+# dbusername  = <some-mysql-user>
+# dbpassword  = <password>
+#
+# 3. specify which config file to use with configfile
+#    (this option does not work with hotcopy)
+# configfile = /etc/mysql/debian.cnf
+#
+# if user and dbusername are not specified, the default is to use
+# /etc/mysql/debian.cnf for configfile.
 
 
-## notes ##
+### all options ###
 
 # configfile = < path/to/file > (default = /etc/mysql/debian.cnf)
 # The config file is passed to mysql with --defaults-file.
 
 # configfile = < path/to/file > (default = /etc/mysql/debian.cnf)
 # The config file is passed to mysql with --defaults-file.
@@ -50,7 +57,7 @@ configfile = /etc/mysql/debian.cnf
 # where to dump the backups. hotcopy backups will be in a subdirectory 'hotcopy' and
 # sqldump backups will be in a subdirectory 'sqldump'
 #
 # where to dump the backups. hotcopy backups will be in a subdirectory 'hotcopy' and
 # sqldump backups will be in a subdirectory 'sqldump'
 #
-# hotcopy = < yes | no > (default = yes)
+# hotcopy = < yes | no > (default = no)
 # make a backup of the actual database binary files using mysqlhotcopy.
 #
 # sqldump = < yes | no > (default = no)
 # make a backup of the actual database binary files using mysqlhotcopy.
 #
 # sqldump = < yes | no > (default = no)
index 8283ba4a00ac86add0dcbcf42a4d7617f3d02222..13dd62f2643a9d3be9ffdcaf0e82df2555d8cdc0 100644 (file)
@@ -3,17 +3,28 @@
 #
 
 getconf backupdir /var/backups/mysql
 #
 
 getconf backupdir /var/backups/mysql
-getconf configfile /etc/mysql/debian.cnf
 getconf databases all
 getconf databases all
-getconf compress yes
-getconf dbusername
-getconf dbpassword
 getconf dbhost localhost
 getconf dbhost localhost
-getconf hotcopy yes
+getconf hotcopy no
 getconf sqldump no
 getconf sqldump no
-getconf user root
+getconf compress yes
 getconf vsname
 
 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=`grep "^$user:" /etc/passwd | awk -F: '{print $6}'`
+       [ -f $userhome/.my.cnf ] || fatal "Can't find config file in $userhome/.my.cnf"
+fi
+
 # If vservers are configured, decide if the handler should
 # use them or if it should just operate on the host
 
 # If vservers are configured, decide if the handler should
 # use them or if it should just operate on the host
 
@@ -51,17 +62,33 @@ else
        [ "$hotcopy" == "no" -o -d $hotdir ] || mkdir -p $hotdir
 fi
 
        [ "$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.
 # 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
 # specify the password on the command line.
 
 defaultsfile=""
 if [ "$dbusername" != "" -a "$dbpassword" != "" ]; then
-       mycnf="/tmp/backupninja.$$.my.cnf"
+       home=`grep '^root:' /etc/passwd | awk -F: '{print $6}'`
+       [ -d $home ] || fatal "Can't find root's home directory ($home)."
+       mycnf="$home/.my.cnf"
        if [ -f $mycnf ]; then
        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
        fi
        oldmask=`umask`
        umask 077
@@ -80,21 +107,22 @@ user=$dbusername
 password=$dbpassword
 EOF
        umask $oldmask
 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
 
 fi
 
+#######################################################################
 ## HOT COPY
 
 if [ "$hotcopy" == "yes" ]; then 
        if [ "$databases" == "all" ]; then
                if [ $usevserver ]
                then
 ## 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
                else
-                       execstr="$MYSQLHOTCOPY $defaultsfile --quiet --allowold --regexp /.\*/./.\*/ $hotdir"
+                       execstr="$MYSQLHOTCOPY --quiet --allowold --regexp /.\*/./.\*/ $hotdir"
                fi
                debug "su $user -c '$execstr'"
                if [ ! $test ]; then
                fi
                debug "su $user -c '$execstr'"
                if [ ! $test ]; then
@@ -112,9 +140,9 @@ if [ "$hotcopy" == "yes" ]; then
                for db in $databases; do
                        if [ $usevserver ]
                        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
                        else
-                               execstr="$MYSQLHOTCOPY $defaultsfile --allowold $db $hotdir"
+                               execstr="$MYSQLHOTCOPY --allowold $db $hotdir"
                        fi
                        debug "su $user -c '$execstr'"
                        if [ ! $test ]; then
                        fi
                        debug "su $user -c '$execstr'"
                        if [ ! $test ]; then
@@ -131,7 +159,8 @@ if [ "$hotcopy" == "yes" ]; then
                done
        fi
 fi
                done
        fi
 fi
-       
+
+##########################################################################
 ## SQL DUMP
 
 if [ "$sqldump" == "yes" ]; then
 ## SQL DUMP
 
 if [ "$sqldump" == "yes" ]; then
@@ -172,9 +201,14 @@ if [ "$sqldump" == "yes" ]; then
 fi
 
 # clean up tmp config file
 fi
 
 # clean up tmp config file
-if [ -f "$mycnf" ]; then
+if [ "$dbusername" != "" ]; then
+       ## clean up tmp config file
        debug "rm $mycnf"
        rm $mycnf
        debug "rm $mycnf"
        rm $mycnf
+       if [ -f "$tmpcnf" ]; then
+               debug "mv $tmpcnf $mycnf"
+               mv $tmpcnf $mycnf
+       fi
 fi
 
 return 0
 fi
 
 return 0