diff options
author | Franck Cuny <franck@fcuny.net> | 2020-10-06 17:43:07 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2020-10-06 17:43:07 -0700 |
commit | 716f682cf43919230649082f9a4fc26ce32e8c24 (patch) | |
tree | 165d643ca4c388fc59de03041bad6448e6675b3f /config/systemd/user | |
parent | desktop: drop screenshot directory (diff) | |
download | emacs.d-716f682cf43919230649082f9a4fc26ce32e8c24.tar.gz |
linux: create service for backing up
I want to backup my $HOME to the nas using restic.
Diffstat (limited to 'config/systemd/user')
-rw-r--r-- | config/systemd/user/backup.service | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/systemd/user/backup.service b/config/systemd/user/backup.service new file mode 100644 index 0000000..a2f2d18 --- /dev/null +++ b/config/systemd/user/backup.service @@ -0,0 +1,13 @@ +[Unit] +Description=backup my home directory + +[Service] +Type=oneshot + +Environment=RESTIC_REPOSITORY=rest:http://nas:8010/ +Environment=RESTIC_PASSWORD_FILE=/home/fcuny/.config/restic/password + +ExecStart=/usr/bin/restic --tag=home --exclude=/home/fcuny/.cache --exclude=/home/fcuny/.mozilla --exclude=/home/fcuny/.config/chromium backup /home/fcuny + +[Install] +WantedBy=default.target |