X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fopensim%2Fbackup_osgrid.sh;h=865ca4d888dcb443720b8c3e8a6f2b2fc58e7c11;hb=4c988c3fa8a08ced9db160e5b92120a26d64d807;hp=c77b3be5f14f7bddfd8c06d6b4187775923c7d7d;hpb=2526778e1909c3098391bf35e17f50a183db8e53;p=feisty_meow.git diff --git a/scripts/opensim/backup_osgrid.sh b/scripts/opensim/backup_osgrid.sh index c77b3be5..865ca4d8 100644 --- a/scripts/opensim/backup_osgrid.sh +++ b/scripts/opensim/backup_osgrid.sh @@ -1,15 +1,19 @@ #!/bin/bash # a simple script that backs up the opensim database assets. +#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=osgrid_bkup_${host}_$(date_stringer).mysql_bkup -mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opengrid > $bkupname +bkupname="backup-osgrid_${host}_$(date_stringer).mysql_bkup" +mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opengrid > "$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"