From 8b3c5fc2550e26512767c62cae53956286a7a8c7 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Wed, 25 Apr 2018 13:26:03 -0700 Subject: [PATCH] Don't run against localhost by default with kick.sh Running against localhost by default with kick.sh means that if you have disabled puppet crons on the puppet master to test things you will reenable them automatically creating potentially bad side effects. Avoid this problem by forcing people to explicitly puppet localhost if this is what they want. Change-Id: Id4212005735cac13e6d26439f309569d7567206c --- tools/kick.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/kick.sh b/tools/kick.sh index b7dd7d69c1..af71bed226 100755 --- a/tools/kick.sh +++ b/tools/kick.sh @@ -14,5 +14,5 @@ # License for the specific language governing permissions and limitations # under the License. -ansible-playbook -f1 --limit $1:localhost \ +ansible-playbook -f1 --limit $1 \ /opt/system-config/production/playbooks/remote_puppet_adhoc.yaml