git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site/profile/manifests/webhook_no_mcollective.pp
blob: 9f4b7fa981562576ee3aef6a416a99b71410737d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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'],
  }

}