blob: 6a67bf2f97ea65eb74f80913ea0dbc653de8e9e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#
# Class to execute barometer-manage db_sync
#
# == Parameters
#
# [*extra_params*]
# (optional) String of extra command line parameters to append
# to the barometer-dbsync command.
# Defaults to undef
#
class barometer::db::sync(
$extra_params = undef,
) {
exec { 'barometer-db-sync':
command => "barometer-manage db_sync ${extra_params}",
path => [ '/bin', '/usr/bin', ],
user => 'barometer',
refreshonly => true,
try_sleep => 5,
tries => 10,
logoutput => on_failure,
subscribe => [Package['barometer'], Barometer_config['database/connection']],
}
Exec['barometer-manage db_sync'] ~> Service<| title == 'barometer' |>
}
|