Use ampersand in backup instead of semi colon

This commit is contained in:
Quentin 2022-01-27 16:58:22 +01:00
parent 84b26f347d
commit 715c3d3a9f

View file

@ -23,7 +23,7 @@ job "backup_daily" {
config { config {
image = "restic/restic:0.12.1" image = "restic/restic:0.12.1"
entrypoint = [ "/bin/sh", "-c" ] entrypoint = [ "/bin/sh", "-c" ]
args = [ "restic backup /mail && restic forget --keep-within 1m1d --keep-within-weekly 3m --keep-within-monthly 1y ; restic prune --max-unused 50% --max-repack-size 2G ; restic check" ] args = [ "restic backup /mail && restic forget --keep-within 1m1d --keep-within-weekly 3m --keep-within-monthly 1y && restic prune --max-unused 50% --max-repack-size 2G && restic check" ]
volumes = [ volumes = [
"/mnt/ssd/mail:/mail" "/mnt/ssd/mail:/mail"
] ]
@ -68,7 +68,7 @@ EOH
config { config {
image = "restic/restic:0.12.1" image = "restic/restic:0.12.1"
entrypoint = [ "/bin/sh", "-c" ] entrypoint = [ "/bin/sh", "-c" ]
args = [ "restic backup /plume && restic forget --keep-within 1m1d --keep-within-weekly 3m --keep-within-monthly 1y ; restic prune --max-unused 50% --max-repack-size 2G ; restic check" ] args = [ "restic backup /plume && restic forget --keep-within 1m1d --keep-within-weekly 3m --keep-within-monthly 1y && restic prune --max-unused 50% --max-repack-size 2G && restic check" ]
volumes = [ volumes = [
"/mnt/ssd/plume/media:/plume" "/mnt/ssd/plume/media:/plume"
] ]
@ -139,7 +139,7 @@ EOH
config { config {
image = "restic/restic:0.12.1" image = "restic/restic:0.12.1"
entrypoint = [ "/bin/sh", "-c" ] entrypoint = [ "/bin/sh", "-c" ]
args = [ "restic backup $NOMAD_ALLOC_DIR/consul.json && restic forget --keep-within 1m1d --keep-within-weekly 3m --keep-within-monthly 1y ; restic prune --max-unused 50% --max-repack-size 2G ; restic check" ] args = [ "restic backup $NOMAD_ALLOC_DIR/consul.json && restic forget --keep-within 1m1d --keep-within-weekly 3m --keep-within-monthly 1y && restic prune --max-unused 50% --max-repack-size 2G && restic check" ]
} }