
Increase the setting log level in the synchronization database. Change-Id: I98bbc3d0a5cf8f57448a210399c3caede6b4292f Closes-Bug: #1683567
32 lines
852 B
Puppet
32 lines
852 B
Puppet
#
|
|
# Class to execute watcher-db-manage create_schema
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*extra_params*]
|
|
# (optional) String of extra command line parameters to append
|
|
# to the watcher-db-manage create_schema command.
|
|
# Defaults to '--config-file /etc/watcher/watcher.conf'
|
|
#
|
|
class watcher::db::create_schema(
|
|
$extra_params = '--config-file /etc/watcher/watcher.conf',
|
|
) {
|
|
|
|
include ::watcher::deps
|
|
|
|
exec { 'watcher-db-manage-create_schema':
|
|
command => "watcher-db-manage ${extra_params} create_schema",
|
|
path => '/usr/bin',
|
|
user => 'watcher',
|
|
refreshonly => true,
|
|
logoutput => on_failure,
|
|
subscribe => [
|
|
Anchor['watcher::install::end'],
|
|
Anchor['watcher::config::end'],
|
|
Anchor['watcher::db::create_schema::begin']
|
|
],
|
|
notify => Anchor['watcher::db::create_schema::end'],
|
|
}
|
|
|
|
}
|