X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fopensim%2Fbackup_opensim.sh;h=892a13e410375af817729cd95faba792841ff9c8;hb=127f1ebee2cb2aa322fc8a1284ddd040cca653fa;hp=030e372c7b6df9d4f41e7f3d60c210901a8d8478;hpb=2952ccf47b80174880141a7ecfa122089f349b8d;p=feisty_meow.git diff --git a/scripts/opensim/backup_opensim.sh b/scripts/opensim/backup_opensim.sh index 030e372c..892a13e4 100644 --- a/scripts/opensim/backup_opensim.sh +++ b/scripts/opensim/backup_opensim.sh @@ -1,15 +1,28 @@ #!/bin/bash # a simple script that backs up the opensim database assets. -source $SHELLDIR/core/date_stringer.sh +gridusername="$1"; shift +databasename="$1"; shift + +if [ -z "$gridusername" ]; then + gridusername=griduser +fi +if [ -z "$databasename" ]; then + databasename=opensim +fi + +#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/launch_feisty_meow.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 "$gridusername" -p$(cat $HOME/.secrets/opensim_db_password.txt) "$databasename" > "$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"