X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fopensim%2Fbackup_osgrid.sh;h=15e5dbc3043a5880b65be17a410a4dea807ccf8d;hb=66e60c3527770ae970ff9f82ad6a48b8be2b251b;hp=72212f11da7ad92e8222dbf018f080d365dd5d9e;hpb=2952ccf47b80174880141a7ecfa122089f349b8d;p=feisty_meow.git diff --git a/scripts/opensim/backup_osgrid.sh b/scripts/opensim/backup_osgrid.sh index 72212f11..15e5dbc3 100644 --- a/scripts/opensim/backup_osgrid.sh +++ b/scripts/opensim/backup_osgrid.sh @@ -1,15 +1,15 @@ #!/bin/bash # a simple script that backs up the opensim database assets. -source $SHELLDIR/core/date_stringer.sh +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"