aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rwxr-xr-xshare/hydractl/backup-copy-sites4
-rwxr-xr-xshare/hydractl/backup-sites4
2 files changed, 8 insertions, 0 deletions
diff --git a/share/hydractl/backup-copy-sites b/share/hydractl/backup-copy-sites
index c6c9a1f..250b7a8 100755
--- a/share/hydractl/backup-copy-sites
+++ b/share/hydractl/backup-copy-sites
@@ -39,5 +39,9 @@ fi
# Copy each site.
for site in $sites; do
+ if [ "$site" == "backup" ]; then
+ continue
+ fi
+
hydractl backup-copy-site $SERVER $site
done
diff --git a/share/hydractl/backup-sites b/share/hydractl/backup-sites
index 438564b..e75d72f 100755
--- a/share/hydractl/backup-sites
+++ b/share/hydractl/backup-sites
@@ -23,5 +23,9 @@ else
fi
for site in $sites; do
+ if [ "$site" == "backup" ]; then
+ continue
+ fi
+
hydractl backup-site $site
done