We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5512c43 commit 2f0435dCopy full SHA for 2f0435d
templates/userlist.cfg
@@ -8,7 +8,11 @@ userlist {{ item.name }}
8
{% endif %}
9
{% if item.users is defined %}
10
{% for user in item.users %}
11
+ {% if user.password is defined %}
12
user {{ user.name }} password {{ user.password }}{% if user.groups is defined %} groups {{ ','.join(user.groups) }}{% endif %}
-
13
+ {% elif user.insecure_password is defined %}
14
+ user {{ user.name }} insecure-password {{ user.insecure_password }}{% if user.groups is defined %} groups {{ ','.join(user.groups) }}{% endif %}
15
+ {% endif %}
16
{% endfor %}
17
+
18
0 commit comments