precaution that seemed to fix weirdness in backup osgrid script.
authorChris Koeritz <fred@gruntose.com>
Sun, 4 Mar 2012 02:58:38 +0000 (21:58 -0500)
committerChris Koeritz <fred@gruntose.com>
Sun, 4 Mar 2012 02:58:38 +0000 (21:58 -0500)
scripts/opensim/backup_opensim.sh

index 364e195519ac139fcfd8a09e589b9bc57ec05850..5ce2c3c5da83103ba028871f16e57151ed4d2b77 100644 (file)
@@ -5,11 +5,10 @@ source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
 
 host=$(echo $(hostname) | sed -e 's/\([^.]*\)\..*/\1/')
 
-bkupname=opensim_bkup_${host}_$(date_stringer).mysql_bkup
-mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opensim > $bkupname
+bkupname="opensim_bkup_${host}_$(date_stringer).mysql_bkup"
+mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opensim > "$bkupname"
 # note that the above assumes the database is called "opensim".  it might be
 # called opengrid instead, based on the setup procedure that was followed.
 # likewise the user might be someone other than "griduser".
-gzip $bkupname
-
+gzip "$bkupname"