Skip to content

Commit

Permalink
Update create-users.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-hermann-sva authored Dec 18, 2023
1 parent b9b1240 commit 6807882
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasks/create-users.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
groups: "{{ item.groups | join(',') if 'groups' in item else '' }}"
append: "{{ item.append | default(omit) }}"
shell: "{{ item.shell if item.shell is defined else users_default_shell }}"
password: "{{ item.password | password_hash('sha512') if item.password is defined else '!' }}"
password: "{{ item.password if item.password is defined else '!' }}"
#password: "{{ item.password | password_hash('sha512') if item.password is defined else '!' }}"
comment: "{{ item.name if item.name is defined else '' }}"
uid: "{{ item.uid | default(omit) }}"
home: "{{ item.home | default('/home/' + item.username) }}"
Expand Down

0 comments on commit 6807882

Please sign in to comment.