mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-17 21:03:30 +00:00
12 lines
189 B
Bash
12 lines
189 B
Bash
#!/bin/sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
for file in `grep -sl Require-User /usr/lib/opkg/info/*.control`; do
|
|
file="${file##*/}"
|
|
file="${file%.control}"
|
|
add_group_and_user "${file}"
|
|
done
|
|
|
|
exit 0
|