diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-01-04 18:43:33 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-01-04 18:43:33 -0200 |
commit | 3f397ff1575b79f74184302f3c3b8e549895f571 (patch) | |
tree | 345e49f8b0e146e48b9a06db73258d8e88305822 /share/hydractl/backup-restore | |
parent | 26cbb26cebd495fd6260b6af65b37fe5c8a8c00b (diff) | |
download | hydra-3f397ff1575b79f74184302f3c3b8e549895f571.tar.gz hydra-3f397ff1575b79f74184302f3c3b8e549895f571.tar.bz2 |
Adding backup/copy sites; restoration fixes
Diffstat (limited to 'share/hydractl/backup-restore')
-rwxr-xr-x | share/hydractl/backup-restore | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/share/hydractl/backup-restore b/share/hydractl/backup-restore index a5bfd42..438d1a6 100755 --- a/share/hydractl/backup-restore +++ b/share/hydractl/backup-restore @@ -7,11 +7,17 @@ source $APP_BASE/lib/hydra/functions || exit 1 hydra_config_load +# Syntax check. +if [ -z "$1" ]; then + echo "Usage: `basename $0` <localhost|server> [rsync|rdiff]" + exit 1 +fi + # Check restore strategy. if [ "$1" == "localhost" ]; then - hydra_backup_environment_local $2 restore + hydra_backup_environment_local else - hydra_backup_environment_remote $1 restore + hydra_backup_environment_remote $* fi duplicity restore file:///$BACKUPDIR/ $RESTOREDIR/ |