From 4c79cfe718e1328c2e39173446b9874f6fe9e112 Mon Sep 17 00:00:00 2001 From: Khai Do Date: Wed, 5 Feb 2014 13:06:54 -0800 Subject: [PATCH] give zaro access to zuul-dev server Zaro needs access to zuul-dev server to test gerrit upgrades. Zaro has read and agrees to the following http://ci.openstack.org/sysadmin.html#ssh-access Change-Id: I0a9e8a4fbe89b64b98510bb9a474d98ca8f0a01f --- modules/openstack_project/manifests/zuul_dev.pp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/openstack_project/manifests/zuul_dev.pp b/modules/openstack_project/manifests/zuul_dev.pp index ce7556fbd2..53b3805ace 100644 --- a/modules/openstack_project/manifests/zuul_dev.pp +++ b/modules/openstack_project/manifests/zuul_dev.pp @@ -11,6 +11,11 @@ class openstack_project::zuul_dev( $statsd_host = '', $gearman_workers = [] ) { + + realize ( + User::Virtual::Localuser['zaro'], + ) + # Turn a list of hostnames into a list of iptables rules $iptables_rules = regsubst ($gearman_workers, '^(.*)$', '-m state --state NEW -m tcp -p tcp --dport 4730 -s \1 -j ACCEPT')