ansible: fix reserved variable warning
authorChristian Pointner <equinox@realraum.at>
Sat, 21 Apr 2018 17:08:30 +0000 (19:08 +0200)
committerChristian Pointner <equinox@realraum.at>
Sat, 21 Apr 2018 17:08:30 +0000 (19:08 +0200)
ansible/apply-role.sh
ansible/generic.yaml

index 75db316..3d39f34 100755 (executable)
@@ -10,4 +10,4 @@ role="$1"
 shift
 
 echo "######## applying the role '$role' to host(s) '$hosts' ########"
-exec ansible-playbook -e "hosts=$hosts" -e "role=$role" $@ generic.yaml
+exec ansible-playbook -e "myhosts=$hosts" -e "myrole=$role" $@ generic.yaml
index fe74120..d3b8de8 100644 (file)
@@ -1,5 +1,5 @@
 ---
-- name: "Apply role {{ role }} to hosts: {{ hosts }}"
-  hosts: "{{ hosts }}"
+- name: "Apply role {{ myrole }} to hosts: {{ myhosts }}"
+  hosts: "{{ myhosts }}"
   roles:
-    - role: "{{ role }}"
+    - role: "{{ myrole }}"