]> gitweb.fluxo.info Git - slackbuilds.git/commitdiff
backupninja: fixed 0.9.5 patch
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>
Tue, 18 Dec 2007 21:26:25 +0000 (21:26 +0000)
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>
Tue, 18 Dec 2007 21:26:25 +0000 (21:26 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1540 370017ae-e619-0410-ac65-c121f96126d4

app/backup/backupninja/backupninja-0.9.5.diff

index d3ab815599786d72ea67c1135076d5a8dffad9f8..ccca997b9aebf08c9261000d9fdb3aa2cd1e4608 100644 (file)
@@ -1,15 +1,15 @@
 diff -Naur backupninja-0.9.5.orig/handlers/mysql.in backupninja-0.9.5/handlers/mysql.in
---- backupninja-0.9.5.orig/handlers/mysql.in    2007-11-19 23:28:49.000000000 -0200
-+++ backupninja-0.9.5/handlers/mysql.in 2007-12-03 17:16:10.000000000 -0200
+--- backupninja-0.9.5.orig/handlers/mysql.in   2007-11-19 23:28:49.000000000 -0200
++++ backupninja-0.9.5/handlers/mysql.in        2007-12-03 18:20:25.000000000 -0200
 @@ -91,8 +91,7 @@
  then
      if [ $usevserver = yes ]
      then
--       vhome=`$VSERVER $vsname exec getent passwd "root" | @AWK@ -F: '{print $6}'`
--       home="$vroot$vhome"
-+       home=`$VSERVER $vsname exec getent passwd "root" | awk -F: '{print $6}'`
+-      vhome=`$VSERVER $vsname exec getent passwd "root" | @AWK@ -F: '{print $6}'`
+-      home="$vroot$vhome"
++      home=`$VSERVER $vsname exec getent passwd "root" | @AWK@ -F: '{print $6}'`
      else
-        home=`getent passwd "root" | @AWK@ -F: '{print $6}'`
+       home=`getent passwd "root" | @AWK@ -F: '{print $6}'`
      fi
 @@ -100,18 +99,25 @@
      [ -d $home ] || fatal "Can't find root's home directory ($home)."
@@ -19,18 +19,18 @@ diff -Naur backupninja-0.9.5.orig/handlers/mysql.in backupninja-0.9.5/handlers/m
 -    if [ -f $mycnf ]
 +
 +    if [ $usevserver = yes ]
-     then
--       # rename temporarily
--       tmpcnf="$home/my.cnf.disable"
--       debug "mv $mycnf $tmpcnf"
--       mv $mycnf $tmpcnf
++    then
 +      workcnf="$vroot$mycnf"
 +    else
 +      workcnf="$mycnf"
 +    fi
 +
 +    if [ -f $workcnf ]
-+    then
+     then
+-      # rename temporarily
+-      tmpcnf="$home/my.cnf.disable"
+-      debug "mv $mycnf $tmpcnf"
+-      mv $mycnf $tmpcnf
 +      # rename temporarily
 +      tmpcnf="$workcnf.disable"
 +      debug "mv $workcnf $tmpcnf"
@@ -47,80 +47,55 @@ diff -Naur backupninja-0.9.5.orig/handlers/mysql.in backupninja-0.9.5/handlers/m
 @@ -129,12 +135,7 @@
  password="$dbpassword"
  EOF
-        umask $oldmask
--       if [ $usevserver = yes ] 
--       then
--           defaultsfile="--defaults-extra-file=$vhome/.my.cnf"
--       else
--           defaultsfile="--defaults-extra-file=$mycnf"
--       fi
-+       defaultsfile="--defaults-extra-file=$mycnf"
+       umask $oldmask
+-      if [ $usevserver = yes ] 
+-      then
+-          defaultsfile="--defaults-extra-file=$vhome/.my.cnf"
+-      else
+-          defaultsfile="--defaults-extra-file=$mycnf"
+-      fi
++      defaultsfile="--defaults-extra-file=$mycnf"
  fi
  
  # if a user is not set, use $configfile, otherwise use $mycnf
-@@ -142,27 +143,28 @@
-        user=root;
-        defaultsfile="--defaults-extra-file=$configfile"
- else
--       userset=true;
--       if [ $usevserver = yes ]
--       then
--           vuserhome=`$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$vuserhome"
--       else
--           userhome=`getent passwd "$user" | @AWK@ -F: '{print $6}'`
--           if [ $? -eq 2 ]
--           then
--               fatal "User $user not found in /etc/passwd"
--           fi
--               fi
--       
--       debug "User home set to: $userhome"
--       [ -f $userhome/.my.cnf ] || fatal "Can't find config file in $userhome/.my.cnf"
--       defaultsfile="--defaults-extra-file=$userhome/.my.cnf"
--       debug "using $defaultsfile"
-+        userset=true;
-+        if [ $usevserver = yes ]
-+        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
-+            debug "User home set to: $vroot$userhome"
-+            [ -f $vroot$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
-+            debug "User home set to: $userhome"
-+            [ -f $userhome/.my.cnf ] || fatal "Can't find config file in $userhome/.my.cnf"
-+        fi
-+        
-+        defaultsfile="--defaults-extra-file=$userhome/.my.cnf"
-+        debug "using $defaultsfile"
- fi
- #######################################################################
-@@ -310,12 +312,12 @@
+@@ -145,18 +146,21 @@
+       userset=true;
+       if [ $usevserver = yes ]
+       then
+-          vuserhome=`$VSERVER $vsname exec getent passwd "$user" | @AWK@ -F: '{print $6}'`
++          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$vuserhome"
++          debug "User home set to: $vroot$userhome"
++          [ -f $vroot$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
++          debug "User home set to: $userhome"
++          [ -f $userhome/.my.cnf ] || fatal "Can't find config file in $userhome/.my.cnf"
+               fi
+       
+       debug "User home set to: $userhome"
+@@ -310,12 +314,12 @@
  if [ "$dbusername" != "" -a "$dbpassword" != "" ]
  then
-        ## clean up tmp config file
--       debug "rm $mycnf"
--       rm $mycnf
-+       debug "rm $workcnf"
-+       rm $workcnf
-        if [ -f "$tmpcnf" ]
-        then
--               debug "mv $tmpcnf $mycnf"
--               mv $tmpcnf $mycnf
-+               debug "mv $tmpcnf $workcnf"
-+               mv $tmpcnf $workcnf
-        fi
+       ## clean up tmp config file
+-      debug "rm $mycnf"
+-      rm $mycnf
++      debug "rm $workcnf"
++      rm $workcnf
+       if [ -f "$tmpcnf" ]
+       then
+-              debug "mv $tmpcnf $mycnf"
+-              mv $tmpcnf $mycnf
++              debug "mv $tmpcnf $workcnf"
++              mv $tmpcnf $workcnf
+       fi
  fi