X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fopensim%2Fbackup_opensim.sh;fp=scripts%2Fopensim%2Fbackup_opensim.sh;h=508cad3fae82f3c41c4354fec46c0440f118f761;hb=7b39f7e279005c8466ef508220a532ce2aa4abf8;hp=7974f0d8ac50feb0490c5eebd0f0243dfbd7fe89;hpb=3fbd372b35b15a19fb171d5ae34294ff7b1e6485;p=feisty_meow.git diff --git a/scripts/opensim/backup_opensim.sh b/scripts/opensim/backup_opensim.sh index 7974f0d8..508cad3f 100644 --- a/scripts/opensim/backup_opensim.sh +++ b/scripts/opensim/backup_opensim.sh @@ -4,25 +4,19 @@ gridusername="$1"; shift databasename="$1"; shift -if [ -z "$gridusername" ]; then - gridusername=griduser +if [ -z "$gridusername" -o -z "$databasename" ]; then + echo " +This script takes two parameters: (1) the user name for the opensim database +and (2) the database name. It will backup that database by logging into +mysql as the user. The user's password for mysql must be recorded in a local +file called: \$HOME/.secrets/opensim_db_password.txt" 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/functions.sh" +source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" host=$(echo $(hostname) | sed -e 's/\([^.]*\)\..*/\1/') 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"