tag other things the same

This commit is contained in:
Seth Vidal 2013-02-15 14:54:01 +00:00
parent d84d857dd0
commit 56c432f3ce

View file

@ -106,6 +106,8 @@
- library
- files
- files/mock
tags:
- provision_config
# note - kill this when ansible 0.9 comes out
- name: put ec2_create and add_host module into library path
@ -113,14 +115,20 @@
with_items:
- ec2_create
- add_host
tags:
- provision_config
- name: put addhost into action_plugins path
action: copy src=$basedir/action_plugins/add_host.py dest=/srv/copr-work/provision/action_plugins/add_host.py
tags:
- provision_config
# end kill this w/0.9
- name: put ansible.cfg for all this into /etc/ansible/ on the system
action: copy src=$files/copr/provision/ansible.cfg dest=/etc/ansible/ansible.cfg
tags:
- provision_config
- name: put some files into the provision subdir
@ -135,11 +143,15 @@
- name: put files into the files subdir off of provisioning
action: copy src=$item dest=/srv/copr-work/provision/files/
with_fileglob: $files/copr/provision/files/*
tags:
- provision_config
# ansible lacks a recurse - so we need this until then
- name: put files into the files/mock subdir off of provisioning
action: copy src=$item dest=/srv/copr-work/provision/files/mock
with_fileglob: $files/copr/provision/files/mock/*
tags:
- provision_config