control-repo/site/profile/manifests/webhook_no_mcollective.pp
Nick Walker 1828e21623 Change to using the webhook without mcollective
In order to complete the change I refactered the webhook into
its own set of profiles, one with mcollective and the other
without.
2015-10-16 10:56:07 -07:00

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'],
}
}