aboutsummaryrefslogtreecommitdiff
path: root/share/hydractl/backup-site
diff options
context:
space:
mode:
Diffstat (limited to 'share/hydractl/backup-site')
-rwxr-xr-xshare/hydractl/backup-site12
1 files changed, 8 insertions, 4 deletions
diff --git a/share/hydractl/backup-site b/share/hydractl/backup-site
index ec1f8f3..32c4284 100755
--- a/share/hydractl/backup-site
+++ b/share/hydractl/backup-site
@@ -36,10 +36,14 @@ if [ -z "$SITE" ]; then
fi
# Determine site location.
-if [ "$SITE" == "git" ] && [ "$SITE" == "svn" ]; then
- LOCATION="/var"
+if [ "$SITE" == "git" ] || [ "$SITE" == "svn" ]; then
+ LOCATION="/var/$SITE"
+elif [ "$SITE" == "debian" ]; then
+ LOCATION="/var/reprepro"
+elif [ "$SITE" == "wiki" ]; then
+ LOCATION="/var/www/data/wiki/"
else
- LOCATION="$SITES"
+ LOCATION="$SITES/$SITE"
fi
# Set backups user.
@@ -94,7 +98,7 @@ fi
# Backup site
if [ -d "$SITES/$SITE" ]; then
echo "Backing up site folder..."
- tar jcvf $PACK $LOCATION/$SITE
+ tar jcvf $PACK $LOCATION
md5sum $PACK > $PACK.md5
sha1sum $PACK > $PACK.sha1
chown root.$BACKUPS_GROUP $PACK*