blob: acda216deace4a222338cd316d2a1d10addfc2bd (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
. $IPKG_INSTROOT/etc/functions.sh
gid=$(get_next_gid)
gid2=$(get_next_gid)
add_user hacluster $(get_next_uid) $gid /tmp
add_group hacluster $gid
add_group haclient $gid2
|