summaryrefslogtreecommitdiff
path: root/user/lighttpd/lighttpd.pre-install
blob: b1588fd0b9c604647e4094fc697e5998d178065c (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 lighttpd -G www-data \
	-d /var/www/localhost/htdocs -r lighttpd 2>/dev/null

exit 0