diff options
Diffstat (limited to 'bin/backup-settings')
-rwxr-xr-x | bin/backup-settings | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/bin/backup-settings b/bin/backup-settings deleted file mode 100755 index 1a9cc12..0000000 --- a/bin/backup-settings +++ /dev/null @@ -1,19 +0,0 @@ -#! /bin/sh - -etcTMP=/tmp/etc.tgz -etcIF=/etc -OF=/home/dave/ownCloud/backup/settings -gpgEND=.gpg - -echo "Backing up /etc directory." -tar cfPz $etcTMP $etcIF -echo "Encrypting compressed directory." -su - dave -c "gpg -e -r 'David Runge <david.runge@frqrec.com>' $etcTMP" -echo "Changing permissions on file." -chown dave:dave $etcTMP$gpgEND -echo "Moving backup to ownCloud." -mv -f $etcTMP$gpgEND $OF -echo "Cleaning up." -rm $etcTMP -echo "Done." - |