make sure pkgs02 has tar and python2 installed

This commit is contained in:
Stephen Smoogen 2020-06-09 22:32:53 -04:00
parent 4136ea34a1
commit 0082dc0996

View file

@ -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'