2015-10-16 17:53:16 +00:00
|
|
|
class profile::webhook_no_mcollective {
|
|
|
|
|
|
|
|
class {'r10k::webhook::config':
|
2015-10-29 16:44:01 +00:00
|
|
|
enable_ssl => true,
|
2015-10-21 15:47:57 +00:00
|
|
|
protected => false,
|
2015-10-16 17:53:16 +00:00
|
|
|
use_mcollective => false,
|
|
|
|
}
|
|
|
|
|
|
|
|
class {'r10k::webhook':
|
|
|
|
user => 'root',
|
|
|
|
group => '0',
|
|
|
|
require => Class['r10k::webhook::config'],
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|