#!/bin/sh

groupadd -r -g 82 www-data 2>/dev/null
groupadd -S lighttpd 2>/dev/null
useradd -c lighttpd -s /sbin/nologin -g -G www-data \
	lighttpd -m -d /var/www/localhost/htdocs -k /etc/skel -r lighttpd 2>/dev/null

exit 0
