X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fmysql;h=0f5cd5c470e9312b994b782a1c1e67f29b1c493b;hb=5d835a799c48227b3535caf1954db0ca8af70f45;hp=8283ba4a00ac86add0dcbcf42a4d7617f3d02222;hpb=a56165ce12dbf68ee8522aa5bf0c40aa7928e399;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/mysql b/handlers/mysql index 8283ba4..0f5cd5c 100644 --- a/handlers/mysql +++ b/handlers/mysql @@ -3,21 +3,25 @@ # 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 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,15 +32,57 @@ 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 ? + $VSERVERINFO -q $vsname RUNNING + if [ $? -ne 0 ] + then + fatal "vserver $vsname is not running." + fi +fi + +if [ "$user" == "" ]; then + userset=false; + user=root; +else + userset=true; + if [ $usevserver ] + then + userhome=`$VSERVER $vsname exec getent passwd "$user" | awk -F: '{print $6}'` + if [ $? -eq 2 ] + then + fatal "User $user not found in /etc/passwd" + fi + userhome="$vroot$userhome" + info "User home set to: $userhome" + [ -f $userhome/.my.cnf ] || fatal "Can't find config file in $userhome/.my.cnf" + else + userhome=`getent passwd "$user" | awk -F: '{print $6}'` + if [ $? -eq 2 ] + then + fatal "User $user not found in /etc/passwd" + fi + info "User home set to: $userhome" + [ -f $userhome/.my.cnf ] || fatal "Can't find config file in $userhome/.my.cnf" + fi 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 -# create backup dirs, the vroot variable will be empty if no vsname was specified -# and will proceed to operate on the host +# create backup dirs, $vroot will be empty if no vsname was specified +# and we will instead proceed to operate on the host [ -d $vroot$backupdir ] || mkdir -p $vroot$backupdir [ -d $vroot$backupdir ] || fatal "Backup directory '$vroot$backupdir'" hotdir="$backupdir/hotcopy" @@ -51,50 +97,74 @@ 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" - if [ -f $mycnf ]; then - debug "rm $mycnf" - rm $mycnf - fi - oldmask=`umask` - umask 077 - cat > $mycnf < $mycnf <