diff options
author | mail_redacted_for_web | 2015-10-30 13:42:33 -0700 |
---|---|---|
committer | mail_redacted_for_web | 2015-10-30 13:42:33 -0700 |
commit | 3149d9707f2882bdd4bc499a2bc65fb6dff36bf9 (patch) | |
tree | b8b22bd0b16543749a253c1beb4b59aca1b62e88 /site/profile/manifests/webhook_mcollective.pp | |
parent | 8e271e3043fd55ce7c39f520360214e6844085af (diff) | |
download | control-repo-template-3149d9707f2882bdd4bc499a2bc65fb6dff36bf9.tar.bz2 |
Refactor webhook profiles into one profile with a parameter
Previously there was a mcollective and no_mcollective version of
the webhook profile. They were almost identical so I merged them
and manage the difference with a "use_mcollective" parameter.
I renamed the webhook profile to zack_r10k_webhook.
Diffstat (limited to 'site/profile/manifests/webhook_mcollective.pp')
-rw-r--r-- | site/profile/manifests/webhook_mcollective.pp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/site/profile/manifests/webhook_mcollective.pp b/site/profile/manifests/webhook_mcollective.pp deleted file mode 100644 index 395cc7a..0000000 --- a/site/profile/manifests/webhook_mcollective.pp +++ /dev/null @@ -1,15 +0,0 @@ -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'], - } - -} |