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-copy-sites | |
parent | 26cbb26cebd495fd6260b6af65b37fe5c8a8c00b (diff) | |
download | hydra-3f397ff1575b79f74184302f3c3b8e549895f571.tar.gz hydra-3f397ff1575b79f74184302f3c3b8e549895f571.tar.bz2 |
Adding backup/copy sites; restoration fixes
Diffstat (limited to 'share/hydractl/backup-copy-sites')
-rwxr-xr-x | share/hydractl/backup-copy-sites | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/share/hydractl/backup-copy-sites b/share/hydractl/backup-copy-sites new file mode 100755 index 0000000..19b41d1 --- /dev/null +++ b/share/hydractl/backup-copy-sites @@ -0,0 +1,26 @@ +#!/bin/bash +# +# Copy multiple sites. +# + +# Basic parameters. +SERVER="$1" + +# Syntax check. +if [ -z "$SITE" ]; then + hydra_action_usage + exit 1 +fi + +# Determine sites to copy. +if [ -z "$2" ]; then + sites="`ls /var/sites`" +else + shift + sites="$*" +fi + +# Copy each site. +for site in $sites; do + hydractl backup-copy-site $SERVER $site +done |