From 2e6e67e8d2193fe03176b2956dfc3530ce772623 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Thu, 16 Aug 2018 18:03:23 -0500 Subject: [PATCH] Add base.yaml to kick.sh There are things in base that are needed. Add them to kick.sh. Change-Id: I94a92cd98fa62552df40b73976bcec764c66ebec --- tools/kick.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/kick.sh b/tools/kick.sh index af71bed226..f3dcb73423 100755 --- a/tools/kick.sh +++ b/tools/kick.sh @@ -14,5 +14,7 @@ # License for the specific language governing permissions and limitations # under the License. -ansible-playbook -f1 --limit $1 \ - /opt/system-config/production/playbooks/remote_puppet_adhoc.yaml +for playbook in base.yaml remote_puppet_adhoc.yaml ; do + ansible-playbook -f1 --limit $1 \ + /opt/system-config/production/playbooks/$playbook +done