Hi,

  I was trying following task, to create a user if user is a part on 
*hdfsuser* group


- name: create user tmp dir /srv/tmp/$USER on gateway
  file: path=/srv/tmp/{{ item.name }} owner={{ item.name }} group={{ 
item.name }} mode=0755 state=directory
  when: "'hdfsuser' in {{ item.groups }}"
  with_items: ssh_users
  tags:
    - hadoop

But getting this error :

fatal: [hadoop-client001.dev.abc.com]: FAILED! => {"failed": true, "msg": 
"The conditional check ''hdfsuser' in {{ item.groups }}' failed. The error 
was: template error while templating string: expected token ',', got 
'string'. String: {% if 'hdfsuser' in [u'users'] %} True {% else %} False 
{% endif %}\n\nThe error appears to have been in 
'/Users/xyz/ansible/roles/luigi/tasks/main.yml': line 81, column 3, but 
may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe 
offending line appears to be:\n\n\n- name: create user tmp dir 
/srv/tmp/$USER on gateway\n  ^ here\n"}

 anyone knows workaround this ?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/17675068-0ba9-4bdd-9503-55d181a8f8a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to