#!/bin/sh

addgroup -S -g 82 www-data 2>/dev/null
adduser -S -D -H -h /var/www/localhost/htdocs -s /sbin/nologin \
        -g thttpd thttpd 2>/dev/null
addgroup thttpd www-data 2>/dev/null

exit 0
