diff options
-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 |