Skip to content

Commit

Permalink
Home directory mode fix (cloudera-labs#8)
Browse files Browse the repository at this point in the history
Fix for templating errors on some environment when creating home directories

Signed-off-by: Tristan Stevens <tristan@cloudera.com>
  • Loading branch information
tmgstevens authored and Tristan Stevens committed Jul 28, 2021
1 parent d0b347d commit c4185f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/prereqs/user_accounts/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
path: "{{ account.home }}"
owner: "{{ account.user }}"
group: "{{ account.user }}"
mode: "{{ account.mode | default(0755) }}"
mode: "{{ account.mode | default('0755') }}"
loop: "{{ local_accounts }}"
loop_control:
loop_var: account
Expand Down

0 comments on commit c4185f8

Please sign in to comment.