control-repo/site/profile/manifests/webhook_no_mcollective.pp
Nick Walker c2aeccd388 disable SSL on the zack/r10k webhook
The abrader/gms provider for gitlab doesn't support
disabling ssl verification but will soon.
2015-10-28 11:27:57 -07:00

16 lines
293 B
Puppet

class profile::webhook_no_mcollective {
class {'r10k::webhook::config':
enable_ssl => false,
protected => false,
use_mcollective => false,
}
class {'r10k::webhook':
user => 'root',
group => '0',
require => Class['r10k::webhook::config'],
}
}