diff options
author | David Runge <david.runge@frqrec.com> | 2014-09-28 04:35:51 +0200 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2014-09-28 04:35:51 +0200 |
commit | 4e29fb858bfbd5ff030af7e4e45403dfda6d617f (patch) | |
tree | 6dccc6511068142a6e338af6c36b41fc0f8a28a6 /bin/backup-profiles | |
parent | 6d97cbb8c5d0c59dff36cbd996b65b6c751c8170 (diff) | |
download | dotfiles-4e29fb858bfbd5ff030af7e4e45403dfda6d617f.tar.gz dotfiles-4e29fb858bfbd5ff030af7e4e45403dfda6d617f.tar.bz2 dotfiles-4e29fb858bfbd5ff030af7e4e45403dfda6d617f.tar.xz dotfiles-4e29fb858bfbd5ff030af7e4e45403dfda6d617f.zip |
Changing output messages from Dropbox to ownCloud.
Diffstat (limited to 'bin/backup-profiles')
-rwxr-xr-x | bin/backup-profiles | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/backup-profiles b/bin/backup-profiles index fd7eb3b..9e5c9a1 100755 --- a/bin/backup-profiles +++ b/bin/backup-profiles @@ -1,6 +1,6 @@ #!/bin/sh # -# Backup profiles of firefox and thunderbird to local Dropbox (or other location) while encrypting them using gpg +# Backup profiles of firefox and thunderbird to local ownCloud (or other location) while encrypting them using gpg # firefoxPID=`ps -C firefox -o pid=` @@ -23,7 +23,7 @@ then tar cfPzh $firefoxTMP -C $firefoxIF $profileName echo "Encrypting profile." gpg -e -r 'David Runge <david.runge@frqrec.com>' $firefoxTMP - echo "Moving backup to Dropbox." + echo "Moving backup to ownCloud." mv -f $firefoxTMP$gpgEND $OF echo "Cleaning up." rm $firefoxTMP @@ -36,7 +36,7 @@ else tar cfPzh $firefoxTMP -C $firefoxIF $profileName$backupEND echo "Encrypting profile." gpg -e -r 'David Runge <david.runge@frqrec.com>' $firefoxTMP - echo "Moving backup to Dropbox." + echo "Moving backup to ownCloud." mv -f $firefoxTMP$gpgEND $OF echo "Cleaning up." rm $firefoxTMP @@ -53,7 +53,7 @@ then tar cfPz $thunderbirdTMP -C $thunderbirdIF $profileName echo "Encrypting profile." gpg -e -r 'David Runge <david.runge@frqrec.com>' $thunderbirdTMP - echo "Moving backup to Dropbox." + echo "Moving backup to ownCloud." mv -f $thunderbirdTMP$gpgEND $OF echo "Cleaning up." rm $thunderbirdTMP |