diff options
author | mail_redacted_for_web | 2016-01-05 13:27:26 -0800 |
---|---|---|
committer | mail_redacted_for_web | 2016-01-05 13:27:26 -0800 |
commit | 9a876a61e730f1c17063ad0593c3b37625503b5e (patch) | |
tree | c93741be83ef640c860297e0efe3bbb3d86bfca6 /site/profile/manifests/zack_r10k_webhook.pp | |
parent | a9d3be58aa816a0b909efa05cbb714c0e94c21be (diff) | |
parent | 752f2ef87bb56895f5a63c89fd01fe0ed0c623be (diff) | |
download | control-repo-template-9a876a61e730f1c17063ad0593c3b37625503b5e.tar.bz2 |
Merge pull request #9 from npwalker/2015_3_prep
Changes for PE2015.3.0
Diffstat (limited to 'site/profile/manifests/zack_r10k_webhook.pp')
-rw-r--r-- | site/profile/manifests/zack_r10k_webhook.pp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/site/profile/manifests/zack_r10k_webhook.pp b/site/profile/manifests/zack_r10k_webhook.pp deleted file mode 100644 index 7e0bd40..0000000 --- a/site/profile/manifests/zack_r10k_webhook.pp +++ /dev/null @@ -1,29 +0,0 @@ -class profile::zack_r10k_webhook ( - $username, - $password, - $use_mcollective = false, -) { - - if $use_mcollective { - - class { 'r10k::mcollective': - notify => Service['mcollective'], - } - - } - - class {'r10k::webhook::config': - enable_ssl => true, - protected => true, - user => $username, - pass => $password, - use_mcollective => $use_mcollective, - } - - class {'r10k::webhook': - user => 'root', - group => '0', - require => Class['r10k::webhook::config'], - } - -} |