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.
2 parents 14854a0 + 2f0435d commit f2596b8Copy full SHA for f2596b8
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