diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-09-27 14:43:16 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-09-27 14:43:16 -0300 |
commit | 402782207daaea438316c4ef9b38f3e5198beb03 (patch) | |
tree | c2dcdb77c54b0014477ef4393e89124dc969717c /share | |
parent | 39136920a61f3bba86ea26d6f23bfe6e23926157 (diff) | |
download | hydra-402782207daaea438316c4ef9b38f3e5198beb03.tar.gz hydra-402782207daaea438316c4ef9b38f3e5198beb03.tar.bz2 |
More backup actions
Diffstat (limited to 'share')
-rwxr-xr-x | share/hydractl/backup-restore | 11 | ||||
-rwxr-xr-x | share/hydractl/gitosis-restore | 0 | ||||
-rwxr-xr-x | share/hydractl/site-pack | 1 | ||||
-rwxr-xr-x | share/hydractl/site-restore | 22 | ||||
-rwxr-xr-x | share/hydractl/svn-restore | 0 |
5 files changed, 34 insertions, 0 deletions
diff --git a/share/hydractl/backup-restore b/share/hydractl/backup-restore new file mode 100755 index 0000000..581ac63 --- /dev/null +++ b/share/hydractl/backup-restore @@ -0,0 +1,11 @@ +#!/bin/bash +# +# Backup restoration. +# + +# Load. +source $APP_BASE/lib/hydra/functions || exit 1 +hydra_config_load + +hydra_backup_environment $* +duplicity restore file:///$BACKUPDIR/ $RESTOREDIR/ diff --git a/share/hydractl/gitosis-restore b/share/hydractl/gitosis-restore new file mode 100755 index 0000000..e69de29 --- /dev/null +++ b/share/hydractl/gitosis-restore diff --git a/share/hydractl/site-pack b/share/hydractl/site-pack index ce6d232..2d1175b 100755 --- a/share/hydractl/site-pack +++ b/share/hydractl/site-pack @@ -4,6 +4,7 @@ # # TODO: put on $SITES/backups/site/$SITE, with htaccess and correct # ownership/permission. +# TODO: optionally backup database before packing # Arguments SITES="/var/sites" diff --git a/share/hydractl/site-restore b/share/hydractl/site-restore new file mode 100755 index 0000000..493fc30 --- /dev/null +++ b/share/hydractl/site-restore @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Restore a website from backup +# + +# Load. +source $APP_BASE/lib/hydra/functions || exit 1 +hydra_config_load + +SITE="$3" + +if [ -z "$SITE" ]; then + hydra_action_usage + exit 1 +fi + +hydra_backup_environment $* + +# Check if there's already a site folder and backup it +# Check installed platforms: trac, drupal, pmwiki +# Drupal: check symlinks +# Fix permissions diff --git a/share/hydractl/svn-restore b/share/hydractl/svn-restore new file mode 100755 index 0000000..e69de29 --- /dev/null +++ b/share/hydractl/svn-restore |