deade5bbd1876cd3f009d4c0b18be258c3bf36d1
[openwrt/openwrt.git] / package / base-files / files / etc / uci-defaults / 13_fix_group_user
1 #!/bin/sh
2
3 . /lib/functions.sh
4
5 for file in `grep Require-User /usr/lib/opkg/info/*.control | cut -d: -f1`; do
6 file="${file##*/}"
7 file="${file%.control}"
8 add_group_and_user "${file}"
9 done
10
11 exit 0