From 406b30b96a1a3a80e9aecfe8ec5730a47d0af9d7 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sun, 22 Apr 2012 12:42:46 -0400 Subject: [PATCH] pseudo-standardizing some more filenames. --- scripts/opensim/backup_opensim.sh | 6 +++++- scripts/opensim/backup_osgrid.sh | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/scripts/opensim/backup_opensim.sh b/scripts/opensim/backup_opensim.sh index 5ce2c3c5..8619ae47 100644 --- a/scripts/opensim/backup_opensim.sh +++ b/scripts/opensim/backup_opensim.sh @@ -1,11 +1,15 @@ #!/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="opensim_bkup_${host}_$(date_stringer).mysql_bkup" +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. diff --git a/scripts/opensim/backup_osgrid.sh b/scripts/opensim/backup_osgrid.sh index 15e5dbc3..865ca4d8 100644 --- a/scripts/opensim/backup_osgrid.sh +++ b/scripts/opensim/backup_osgrid.sh @@ -1,11 +1,15 @@ #!/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" +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. -- 2.34.1