summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/lib/functions.sh
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2014-10-08 08:01:28 +0000
committerJohn Crispin <john@openwrt.org>2014-10-08 08:01:28 +0000
commita3bf98495a46796a0bb09c8a4fce4fc8516c4605 (patch)
treee606186d860b76574fdea396807c660bb27eafc6 /package/base-files/files/lib/functions.sh
parent90120bb7712361d67edb84faee78f2b191e1158b (diff)
downloadmaster-31e0f0ae-a3bf98495a46796a0bb09c8a4fce4fc8516c4605.tar.gz
master-31e0f0ae-a3bf98495a46796a0bb09c8a4fce4fc8516c4605.tar.bz2
master-31e0f0ae-a3bf98495a46796a0bb09c8a4fce4fc8516c4605.zip
base-files: extend USERID:=syntax
it is now possible to inlie the uid and gid in the syntax USERID:=username=uid:group=gid:group2=gid2:... Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 42838
Diffstat (limited to 'package/base-files/files/lib/functions.sh')
-rwxr-xr-xpackage/base-files/files/lib/functions.sh28
1 files changed, 20 insertions, 8 deletions
diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh
index 7f148223f5..6f22dd013a 100755
--- a/package/base-files/files/lib/functions.sh
+++ b/package/base-files/files/lib/functions.sh
@@ -176,24 +176,36 @@ default_postinst() {
[ -f ${IPKG_INSTROOT}/usr/lib/opkg/info/${name}.postinst-pkg ] && ( . ${IPKG_INSTROOT}/usr/lib/opkg/info/${name}.postinst-pkg )
rusers=$(grep "Require-User:" ${IPKG_INSTROOT}/usr/lib/opkg/info/${name}.control)
[ -n "$rusers" ] && {
- local user group
+ local user group uid gid
for a in $(echo $rusers | sed "s/Require-User://g"); do
user=""
group=""
for b in $(echo $a | sed "s/:/ /g"); do
+ local name id
+
+ name=$(echo $b | cut -d= -f1)
+ id=$(echo $b | cut -d= -f2)
+
[ -z "$user" ] && {
- user=$b
+ user=$name
+ uid=$id
continue
}
- [ -z "$group" ] && {
- group=$b
- group_add_next $b
+
+ gid=$id
+ [ -n "$gid" ] && group_add $name $gid
+ [ -z "$gid" ] && {
+ group_add_next $name
gid=$?
- user_exists $user || user_add $user "" $gid
+ }
+
+ [ -z "$group" ] && {
+ user_exists $user || user_add $user "$uid" $gid
+ group=$name
continue
}
- group_add_next $b
- group_add_user $b $user
+
+ group_add_user $name $user
done
done
}