X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fopensim%2Fbackup_opensim.sh;h=8619ae47a1a8d6960819b60a85c93d974e0b2cd1;hb=406b30b96a1a3a80e9aecfe8ec5730a47d0af9d7;hp=5c18e55b90e233c2c41b47bd7fa732b7421e21f9;hpb=3ea085ec301ed1399dfa1e9f3a240312dc95410b;p=feisty_meow.git diff --git a/scripts/opensim/backup_opensim.sh b/scripts/opensim/backup_opensim.sh index 5c18e55b..8619ae47 100644 --- a/scripts/opensim/backup_opensim.sh +++ b/scripts/opensim/backup_opensim.sh @@ -1,15 +1,18 @@ #!/bin/bash # a simple script that backs up the opensim database assets. -source $FEISTY_MEOW_SCRIPTS/core/date_stringer.sh +#hmmm: need to parameterize for the database name and secrets file and all that. +# would be nice to have a block of opensim variables, perhaps an associative +# array of config chunks. + +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="backup-opensim_${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"