This commit is contained in:
parent
7281644439
commit
9ae1824589
@ -14,10 +14,15 @@ let
|
|||||||
echo "========== BACKUP HOME STARTING =========="
|
echo "========== BACKUP HOME STARTING =========="
|
||||||
export RESTIC_PASSWORD="gunter.home.2rjus.net"
|
export RESTIC_PASSWORD="gunter.home.2rjus.net"
|
||||||
export RESTIC_REPOSITORY="rest:http://10.69.12.52:8000/gunter.home.2rjus.net"
|
export RESTIC_REPOSITORY="rest:http://10.69.12.52:8000/gunter.home.2rjus.net"
|
||||||
GOTIFY_TOKEN=$(<"$XDG_CONFIG_HOME/sops-nix/secrets/gotify_backup_home")
|
SECRET_PATH="$XDG_CONFIG_HOME/sops-nix/secrets/gotify_backup_home"
|
||||||
|
|
||||||
if [ -z "$GOTIFY_TOKEN" ]; then
|
if ! [ -f "$SECRET_PATH" ]; then
|
||||||
notify-send -u critical "Backup issue" "No Gotify token found"
|
notify-send -u critical "Backup issue" "Secret file for gotify token does not exist"
|
||||||
|
else
|
||||||
|
GOTIFY_TOKEN=$(<"$SECRET_PATH")
|
||||||
|
if [ -z "$GOTIFY_TOKEN" ]; then
|
||||||
|
notify-send -u critical "Backup issue" "No Gotify token found"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Send start notification
|
# Send start notification
|
||||||
@ -85,7 +90,6 @@ let
|
|||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
sops.secrets."gotify_backup_home" = { };
|
sops.secrets."gotify_backup_home" = { };
|
||||||
|
|
||||||
systemd.user.services.backup-home = {
|
systemd.user.services.backup-home = {
|
||||||
|
Loading…
Reference in New Issue
Block a user