git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site/profile/manifests/zack_r10k_webhook.pp
diff options
context:
space:
mode:
authormail_redacted_for_web 2016-01-05 13:27:26 -0800
committermail_redacted_for_web 2016-01-05 13:27:26 -0800
commit9a876a61e730f1c17063ad0593c3b37625503b5e (patch)
treec93741be83ef640c860297e0efe3bbb3d86bfca6 /site/profile/manifests/zack_r10k_webhook.pp
parenta9d3be58aa816a0b909efa05cbb714c0e94c21be (diff)
parent752f2ef87bb56895f5a63c89fd01fe0ed0c623be (diff)
downloadcontrol-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.pp29
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'],
- }
-
-}