From 0082dc0996d14a5ce77e3c6f605e1f6ab1dbb360 Mon Sep 17 00:00:00 2001 From: Stephen Smoogen Date: Tue, 9 Jun 2020 22:32:53 -0400 Subject: [PATCH] make sure pkgs02 has tar and python2 installed --- roles/git/make_checkout_seed/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/git/make_checkout_seed/tasks/main.yml b/roles/git/make_checkout_seed/tasks/main.yml index c387ed3a62..15bf36d6f8 100644 --- a/roles/git/make_checkout_seed/tasks/main.yml +++ b/roles/git/make_checkout_seed/tasks/main.yml @@ -1,6 +1,12 @@ --- # tasklist for setting up the Git checkout seed +- name: make sure packages needed are installed + package: name={{ item }} state=present + with_items: + - tar + - python2 + - name: create the destination directory file: dest=/srv/git_seed owner=root group=root mode=0755 state=directory when: env != 'staging'