X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fopensim%2Fbackup_opensim.sh;h=7974f0d8ac50feb0490c5eebd0f0243dfbd7fe89;hb=bb8cffeaab130cf52b8c5d4502c841c3eca71176;hp=8619ae47a1a8d6960819b60a85c93d974e0b2cd1;hpb=da6c8371908fbd61143e2e930996b9f5310ed889;p=feisty_meow.git diff --git a/scripts/opensim/backup_opensim.sh b/scripts/opensim/backup_opensim.sh index 8619ae47..7974f0d8 100644 --- a/scripts/opensim/backup_opensim.sh +++ b/scripts/opensim/backup_opensim.sh @@ -1,6 +1,16 @@ #!/bin/bash # a simple script that backs up the opensim database assets. +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. @@ -10,7 +20,7 @@ source "$FEISTY_MEOW_SCRIPTS/core/functions.sh" host=$(echo $(hostname) | sed -e 's/\([^.]*\)\..*/\1/') bkupname="backup-opensim_${host}_$(date_stringer).mysql_bkup" -mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opensim > "$bkupname" +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".