Should be single quotes.

This commit is contained in:
Kevin Fenzi 2014-02-28 20:57:16 +00:00
parent 3c4dc7fdbe
commit 3cf121fd11

View file

@ -8,7 +8,7 @@
# #
- name: setup /etc/sudoers.d/sysadmin-main - name: setup /etc/sudoers.d/sysadmin-main
copy: src="{{ private }}/files/sudo/sysadmin-main" dest=/etc/sudoers.d/ owner=root group=root mode=0600 copy: src="{{ private }}/files/sudo/sysadmin-main" dest=/etc/sudoers.d/ owner=root group=root mode=0600
when: sudoers-main == "passwd" when: sudoers-main == 'passwd'
tags: tags:
- config - config
# #
@ -16,7 +16,7 @@
# #
- name: setup /etc/sudoers.d/sysadmin-main (nopasswd) - name: setup /etc/sudoers.d/sysadmin-main (nopasswd)
copy: src="{{ private }}/files/sudo/sysadmin-main-nopasswd" dest=/etc/sudoers.d/ owner=root group=root mode=0600 copy: src="{{ private }}/files/sudo/sysadmin-main-nopasswd" dest=/etc/sudoers.d/ owner=root group=root mode=0600
when: sudoers-main == "nopasswd" when: sudoers-main == 'nopasswd'
tags: tags:
- config - config
# #