rudimentary java library beginning. cleaned up scripts quite
[feisty_meow.git] / scripts / opensim / backup_opensim.sh
1 #!/bin/bash
2 # a simple script that backs up the opensim database assets.
3
4 host=$(echo $(hostname) | sed -e 's/\([^.]*\)\..*/\1/')
5
6 bkupname=opensim_bkup_${host}_$(date_stringer).mysql_bkup
7 mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opensim > $bkupname
8 # note that the above assumes the database is called "opensim".  it might be
9 # called opengrid instead, based on the setup procedure that was followed.
10 # likewise the user might be someone other than "griduser".
11 gzip $bkupname
12
13