1828e21623
In order to complete the change I refactered the webhook into its own set of profiles, one with mcollective and the other without.
14 lines
233 B
Puppet
14 lines
233 B
Puppet
class profile::webhook_no_mcollective {
|
|
|
|
class {'r10k::webhook::config':
|
|
use_mcollective => false,
|
|
}
|
|
|
|
class {'r10k::webhook':
|
|
user => 'root',
|
|
group => '0',
|
|
require => Class['r10k::webhook::config'],
|
|
}
|
|
|
|
}
|