2016-04-29 01:30:52 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
2017-01-24 17:55:13 +00:00
|
|
|
for file in `grep -sl Require-User /usr/lib/opkg/info/*.control`; do
|
2016-04-29 01:30:52 +00:00
|
|
|
file="${file##*/}"
|
|
|
|
file="${file%.control}"
|
|
|
|
add_group_and_user "${file}"
|
|
|
|
done
|
|
|
|
|
|
|
|
exit 0
|