3136a1beb9
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 49276
12 lines
199 B
Bash
12 lines
199 B
Bash
#!/bin/sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
for file in `grep Require-User /usr/lib/opkg/info/*.control | cut -d: -f1`; do
|
|
file="${file##*/}"
|
|
file="${file%.control}"
|
|
add_group_and_user "${file}"
|
|
done
|
|
|
|
exit 0
|