2016-04-29 01:30:52 +00:00
|
|
|
. /lib/functions.sh
|
|
|
|
|
2020-05-10 14:47:46 +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
|