Advertisement
Tamerz

Working r10k::webhook with PE 2015.2.1

Nov 22nd, 2015
2,521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Puppet 0.35 KB | None | 0 0
  1. class profile::r10k_webhook {
  2.  
  3.   include r10k::mcollective
  4.  
  5.   class { 'r10k::webhook::config':
  6.     enable_ssl => true,
  7.     protected  => true,
  8.     user       => 'peadmin',
  9.     pass       => 'complexpasswordgoeshere',
  10.     notify     => Service['webhook'],
  11.   }
  12.  
  13.   class { 'r10k::webhook':
  14.     require => Class['r10k::webhook::config'],
  15.   }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement