summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorKevin Fenzi <kevin@scrye.com>2014-01-08 17:42:18 +0000
committerKevin Fenzi <kevin@scrye.com>2014-01-08 17:42:18 +0000
commit136866729f902ced3fcd10c0a9b6b7aacf0d76cf (patch)
treec82e26169a5e5062b2f9c49bd786fc599a5cfa39 /README
parenta97ce78813179b57d89550dbe28af29ceccd51a4 (diff)
downloadansible-136866729f902ced3fcd10c0a9b6b7aacf0d76cf.tar.gz
ansible-136866729f902ced3fcd10c0a9b6b7aacf0d76cf.tar.xz
ansible-136866729f902ced3fcd10c0a9b6b7aacf0d76cf.zip
Clean up some more old syntax
Diffstat (limited to 'README')
-rw-r--r--README12
1 files changed, 6 insertions, 6 deletions
diff --git a/README b/README
index 5db456a40..0ba947073 100644
--- a/README
+++ b/README
@@ -143,10 +143,10 @@ The available images can be found by running::
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- - ${private}/vars.yml
+ - "{{ private }}/vars.yml"
tasks:
- - include: $tasks/persistent_cloud.yml
+ - include: "{{ tasks }}/persistent_cloud.yml"
- name: provision instance
hosts: $YOUR_HOSTNAME/IP HERE
@@ -155,15 +155,15 @@ The available images can be found by running::
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- - ${private}/vars.yml
- - ${vars}/${ansible_distribution}.yml
+ - "{{ private }}/vars.yml"
+ - /srv/web/infra/ansible/vars//{{ ansible_distribution }}.yml
tasks:
- - include: $tasks/cloud_setup_basic.yml
+ - include: "{{ tasks }}/cloud_setup_basic.yml
# fill in other actions/includes/etc here
handlers:
- - include: $handlers/restart_services.yml
+ - include: "{{ handlers }}/restart_services.yml
5. add/commit the above to the git repo and push your changes