summaryrefslogtreecommitdiff
path: root/roles/installer/openwrt/image/templates/group.j2
blob: cb433b88e74cf40834b8256267cbcd682d44909f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ ansible_managed | comment }}
root:x:0:
daemon:x:1:
adm:x:4:
mail:x:8:
audio:x:29:
www-data:x:33:
ftp:x:55:
users:x:100:
network:x:101:
{% for name, opt in openwrt_users.items() %}
{% if 'group_id' not in opt %}
{{ name }}:x:{{ opt.id | default(loop.index + 110) }}:
{% endif %}
{% endfor %}
{% if openwrt_groups is defined %}
{% for name, opt in openwrt_groups.items() %}
{{ name }}:x:{{ opt.id | default(loop.index + 200) }}:
{% endfor %}
{% endif %}
nogroup:x:65534: