blob: 63235f3cc3d5f21356ff386cbddb0b73d369d122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
case $1 in
pre_install)
adduser -H -h /var/www/localhost/htdocs -s /bin/false -D \
lighttpd 2>/dev/null
;;
post_install)
chown lighttpd:lighttpd /var/*/lighttpd
;;
esac
exit 0
|