Make borg a little bit less personal

This commit is contained in:
flyingscorpio@arch-desktop 2020-10-18 22:23:05 +02:00
parent 561fc93532
commit 22836f3210
2 changed files with 5 additions and 5 deletions

View file

@ -1,10 +1,10 @@
#!/bin/sh #!/bin/bash
### ###
### borg_backup.sh ### borg_backup.sh
### ###
### Usage: ### Usage:
### "$0" [-f] ### borg_backup.sh [-f]
### ###
### Options: ### Options:
### -f Force an update, even if one was already made today. ### -f Force an update, even if one was already made today.
@ -16,7 +16,7 @@ print_help() {
awk -F'### ' '/^###/ { print $2 }' "$0" awk -F'### ' '/^###/ { print $2 }' "$0"
} }
cache_file='/home/flyingscorpio/.cache/borg_backup_hook_last_executed' cache_file="$HOME/.cache/borg_backup_hook_last_executed"
stat_cache_file() { stat_cache_file() {
# We only want this file to be executed at most once per day, so we stat a cache # We only want this file to be executed at most once per day, so we stat a cache
# file before running the rest of the code # file before running the rest of the code

View file

@ -6,7 +6,7 @@ Type = Package
Target = * Target = *
[Action] [Action]
Description = Update to lime2 Description = Borg backup
When = PreTransaction When = PreTransaction
Exec = /bin/sh /home/flyingscorpio/SetupCockpit/borg_backup.sh Exec = /home/flyingscorpio/SetupCockpit/borg_backup.sh
Depends = borg Depends = borg