From dc80d132919d0d5be6e3ede579fc5c585676d9ba Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Fri, 31 Mar 2017 18:14:23 +0000 Subject: [PATCH] Correct global site manifest regex for planet.o.o The regex in the global site manifest for planet01.openstack.org needs to also cover the existing planet.openstack.org, so match on 0 or more trailing digits. Change-Id: I98a86d2b65c80a48b523753d5eacd3aca9108268 --- manifests/site.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/site.pp b/manifests/site.pp index 1752da6aed..bdccc40dd3 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -317,7 +317,7 @@ node /^paste\d+\.openstack\.org$/ { # Node-OS: precise # Node-OS: trusty # Node-OS: xenial -node /planet\d+\.openstack\.org$/ { +node /planet\d*\.openstack\.org$/ { class { 'openstack_project::planet': sysadmins => hiera('sysadmins', []), }