X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fopensim%2Fbackup_opensim.sh;h=5ce2c3c5da83103ba028871f16e57151ed4d2b77;hb=3c7b6af77b25472348eb14947cd7d7040eba489d;hp=e431ade0401496a27e6a9d4ecfe75897b25fe2cf;hpb=11e25956510fbe953a9ceeaddbaebd80334abf43;p=feisty_meow.git diff --git a/scripts/opensim/backup_opensim.sh b/scripts/opensim/backup_opensim.sh index e431ade0..5ce2c3c5 100644 --- a/scripts/opensim/backup_opensim.sh +++ b/scripts/opensim/backup_opensim.sh @@ -1,13 +1,14 @@ #!/bin/bash # a simple script that backs up the opensim database assets. +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"