Skip to content

Commit 867282c

Browse files
authored
Merge pull request #497 from ripleymj/fix-jinja-lint
2 parents cfecc0a + c943aad commit 867282c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roles/user/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
ansible.builtin.set_fact:
2222
real_users: >-
2323
{{
24-
(real_users|default([])) +
24+
(real_users | default([])) +
2525
[
2626
{
2727
'user': item.key,
@@ -31,7 +31,7 @@
3131
}
3232
]
3333
}}
34-
loop: "{{ getent_passwd|dict2items }}"
34+
loop: "{{ getent_passwd | dict2items }}"
3535
when:
3636
# Ideally, this would pull from useradd.conf to get the lower bound for
3737
# regular user UIDs; however, 1000 is relatively universal

0 commit comments

Comments
 (0)