summaryrefslogtreecommitdiffstats
path: root/main/lighttpd/lighttpd.pre-install
blob: 578814db980d5d5ab0f140aed0dc32187cf8c3c0 (plain)
1
2
3
4
5
6
7
#!/bin/sh

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

exit 0