0
0
mirror of https://github.com/saltstack-formulas/users-formula.git synced 2025-02-02 08:39:15 +01:00

Merge pull request #3 from duk3luk3/master

Fixed user default shell source
This commit is contained in:
David Boucha 2013-09-04 12:36:04 -07:00
commit 6b1d798302

View File

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