From a3cba4005a5cab23ac9a26a9326ba812ca0003dd Mon Sep 17 00:00:00 2001 From: Mike Perez Date: Mon, 12 Jun 2017 09:54:40 -0700 Subject: [PATCH] Enable the #thanks feature in statusbot This adds the configuration bits to enable the #thanks command in statusbot. Change-Id: I96873f3f764d9b8b77eb2ce68de24ccb56862a15 Depends-On: I9fd10cbaa315d2a418f3bb65ff7e40014701ec85 --- manifests/site.pp | 2 ++ modules/openstack_project/manifests/eavesdrop.pp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/manifests/site.pp b/manifests/site.pp index d8b6ea916e..895cd849df 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -329,6 +329,8 @@ node 'eavesdrop.openstack.org' { statusbot_wiki_pageid => '1781', # https://wiki.openstack.org/wiki/Successes statusbot_wiki_successpageid => '7717', + # https://wiki.openstack.org/wiki/Thanks + statusbot_wiki_thankspageid => '37700', statusbot_irclogs_url => 'http://eavesdrop.openstack.org/irclogs/%(chan)s/%(chan)s.%(date)s.log.html', statusbot_twitter => true, statusbot_twitter_key => hiera('statusbot_twitter_key'), diff --git a/modules/openstack_project/manifests/eavesdrop.pp b/modules/openstack_project/manifests/eavesdrop.pp index 73b09c52b8..f24f446f0b 100644 --- a/modules/openstack_project/manifests/eavesdrop.pp +++ b/modules/openstack_project/manifests/eavesdrop.pp @@ -12,6 +12,7 @@ class openstack_project::eavesdrop ( $statusbot_wiki_url = '', $statusbot_wiki_pageid = '', $statusbot_wiki_successpageid = '', + $statusbot_wiki_thankspageid = '', $statusbot_irclogs_url = '', $statusbot_twitter = undef, $statusbot_twitter_key = '', @@ -54,6 +55,7 @@ class openstack_project::eavesdrop ( wiki_url => $statusbot_wiki_url, wiki_pageid => $statusbot_wiki_pageid, wiki_successpageid => $statusbot_wiki_successpageid, + wiki_thankspageid => $statusbot_wiki_thankspageid, irclogs_url => $statusbot_irclogs_url, twitter => $statusbot_twitter, twitter_key => $statusbot_twitter_key,