aboutsummaryrefslogtreecommitdiffstats
path: root/puppet-barometer/manifests/db/sync.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet-barometer/manifests/db/sync.pp')
-rw-r--r--puppet-barometer/manifests/db/sync.pp26
1 files changed, 26 insertions, 0 deletions
diff --git a/puppet-barometer/manifests/db/sync.pp b/puppet-barometer/manifests/db/sync.pp
new file mode 100644
index 00000000..6a67bf2f
--- /dev/null
+++ b/puppet-barometer/manifests/db/sync.pp
@@ -0,0 +1,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' |>
+}