From: Chris Koeritz Date: Sun, 4 Mar 2012 00:17:35 +0000 (-0500) Subject: seems to be complaining about something... X-Git-Tag: 2.140.90~1531 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=29746c292d1930d85aeca1fb89f6d9e317303c0e;p=feisty_meow.git seems to be complaining about something... --- diff --git a/scripts/opensim/backup_osgrid.sh b/scripts/opensim/backup_osgrid.sh index c77b3be5..15e5dbc3 100644 --- a/scripts/opensim/backup_osgrid.sh +++ b/scripts/opensim/backup_osgrid.sh @@ -5,11 +5,11 @@ source "$FEISTY_MEOW_SCRIPTS/core/functions.sh" host=$(echo $(hostname) | sed -e 's/\([^.]*\)\..*/\1/') -bkupname=osgrid_bkup_${host}_$(date_stringer).mysql_bkup -mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opengrid > $bkupname +bkupname="osgrid_bkup_${host}_$(date_stringer).mysql_bkup" +mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opengrid > "$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"