blob: 3d6124de0adcb3cf3addd1289738564ccd794e8e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
groupadd -r -g 82 www-data 2>/dev/null
groupadd -r lighttpd 2>/dev/null
useradd -c lighttpd -s /sbin/nologin -G www-data \
-d /var/www/localhost/htdocs -r lighttpd 2>/dev/null
exit 0
|