git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site/profile/manifests/webhook_mcollective.pp
blob: 395cc7ab8af6fed1f7fb4a65c21c56454a7bad2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class profile::webhook_mcollective {

  class { 'r10k::mcollective':
    notify  => Service['mcollective'],
  }

  include r10k::webhook::config

  class {'r10k::webhook':
    user    => 'root',
    group   => '0',
    require => Class['r10k::webhook::config'],
  }
 
}