Revert "Add ask server."

This reverts commit 484a034118

Management is outsourced to the askbot folks.

Change-Id: I36c67211c078ac0cda4f8e4eca7f49c17cea40b2
Reviewed-on: https://review.openstack.org/22338
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Approved: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
This commit is contained in:
James E. Blair 2013-02-19 18:49:37 +00:00 committed by Jenkins
parent 64494b078a
commit 888dc47579
2 changed files with 0 additions and 17 deletions

View File

@ -91,12 +91,6 @@ node 'community.openstack.org' {
}
}
node 'ask.openstack.org' {
class { 'openstack_project::ask':
sysadmins => hiera('sysadmins'),
}
}
node 'ci-puppetmaster.openstack.org' {
class { 'openstack_project::puppetmaster':
sysadmins => hiera('sysadmins'),

View File

@ -1,11 +0,0 @@
#
# Askbot server. Mostly managed outside of puppet.
#
class openstack_project::ask (
$sysadmins = []
) {
class { 'openstack_project::server':
iptables_public_tcp_ports => [80, 443],
sysadmins => $sysadmins
}
}