Fixed user default shell source

Pulling 'shell' from pillar globally makes no sense, probably a mistake; pulling it from user instead.
This commit is contained in:
J. Random Hacker 2013-09-04 21:30:32 +02:00
parent 7b7ee3f2f8
commit b07d21f4c6

View File

@ -28,7 +28,7 @@ include:
user.present: user.present:
- name: {{ name }} - name: {{ name }}
- home: {{ home }} - home: {{ home }}
- shell: {{ pillar.get('shell', '/bin/bash') }} - shell: {{ user.get('shell', '/bin/bash') }}
{% if 'uid' in user -%} {% if 'uid' in user -%}
- uid: {{ user['uid'] }} - uid: {{ user['uid'] }}
{% endif %} {% endif %}