aboutsummaryrefslogtreecommitdiffstats
path: root/bin/backup-profiles
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-09-29 11:16:20 +0200
committerDavid Runge <david.runge@frqrec.com>2014-09-29 11:16:20 +0200
commit8fc239f0d71ee53889bd4c3c63a7dd1124a5847c (patch)
treedabd0431ba95b6278e52f9f38547bbfbbe6f9552 /bin/backup-profiles
parent187fc27dc9bd765285f02e0aac13375bbcd84a6f (diff)
parentdbb77f15412bdaeafacacb80f520c5bd906aa4a4 (diff)
downloaddotfiles-8fc239f0d71ee53889bd4c3c63a7dd1124a5847c.tar.gz
dotfiles-8fc239f0d71ee53889bd4c3c63a7dd1124a5847c.tar.bz2
dotfiles-8fc239f0d71ee53889bd4c3c63a7dd1124a5847c.tar.xz
dotfiles-8fc239f0d71ee53889bd4c3c63a7dd1124a5847c.zip
Merge branch 'master' of https://github.com/davezerave/dot
* 'master' of https://github.com/davezerave/dot: Added more journalctl aliases. Adding alias for journalctl to see messages from this boot only. Adding further ignores for home directory Adding Arduino related vundles Adding Arduino preferences Adding locally compiled tmux-mem-cpu-load version Adding scripts to check weather currently running a realtime or vanilla kernel. Adding correct echo output to updated script. Changing output messages from Dropbox to ownCloud. Adding further aliases, cleaning up systemd aliases and others. Disabling the start of syndaemon, as a systemd user service is taking care of this now (hopefully) Updated user-dirs.dirs settings file to reflect further changes in user home structure. Raising the settings for night mode. Splitting settings for external server into separate config file. Adding newer Ardour version to settings. Deleting unneeded arduino preferences file Shifting to new key bindings config file 'bindings', deleting old ('keys'), updating config file to new settings format.
Diffstat (limited to 'bin/backup-profiles')
-rwxr-xr-xbin/backup-profiles8
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