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-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-sites')
-rwxr-xr-x | share/hydractl/backup-sites | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/share/hydractl/backup-sites b/share/hydractl/backup-sites new file mode 100755 index 0000000..883566e --- /dev/null +++ b/share/hydractl/backup-sites @@ -0,0 +1,14 @@ +#!/bin/bash +# +# Pack multiple websites. +# + +if [ -z "$1" ]; then + sites="`ls /var/sites`" +else + sites="$*" +fi + +for site in $sites; do + hydractl backup-site $site +done |