OpenWrt – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | #!/bin/sh |
2 | |||
3 | . /lib/functions.sh |
||
4 | |||
5 | for file in `grep -sl Require-User /usr/lib/opkg/info/*.control`; do |
||
6 | file="${file##*/}" |
||
7 | file="${file%.control}" |
||
8 | add_group_and_user "${file}" |
||
9 | done |
||
10 | |||
11 | exit 0 |