8 lines
224 B
Text
8 lines
224 B
Text
|
if [ -z "`grep '^stunnel:' etc/group`" ]; then
|
||
|
groupadd -g 51 stunnel
|
||
|
fi
|
||
|
if [ -z "`grep '^stunnel:' etc/passwd`" ]; then
|
||
|
useradd -c "stunnel Daemon" -d /var/lib/stunnel \
|
||
|
-g stunnel -s /bin/false -u 51 stunnel
|
||
|
fi
|