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