Skip to content

Commit

Permalink
split restic dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
akerl committed Oct 28, 2023
1 parent 048538b commit 71c015f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
if $backup_target != '' {
backup::repo { 'grafana':
source => "${datadir}/data",
target => $backup_target,
target => "${backup_target}/data",
watchdog_url => $backup_data_watchdog,
password => $backup_password,
environment => $backup_environment,
Expand All @@ -188,7 +188,7 @@

backup::repo { 'grafana-provisioning':
source => "${datadir}/provisioning",
target => $backup_target,
target => "${backup_target}/provisioning",
watchdog_url => $backup_provisioning_watchdog,
password => $backup_password,
environment => $backup_environment,
Expand All @@ -197,7 +197,7 @@

backup::repo { 'grafana-database':
source => "${datadir}/backup",
target => $backup_target,
target => "${backup_target}/database",
watchdog_url => $backup_database_watchdog,
password => $backup_password,
environment => $backup_environment,
Expand Down

0 comments on commit 71c015f

Please sign in to comment.