updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / lighttpd2-git / lighttpd2.install
blob19625999cce1797ed12429a1ca7cbbd9e80f19c0
1 pre_install() {
2   getent group www-data > /dev/null
3   if [ $? -ne 0 ];then
4     echo 'Adding group www-data'
5     groupadd  -r www-data
6   fi
7   id www-data > /dev/null
8   if [ $? -ne 0 ];then
9     echo 'Adding user www-data'
10     useradd -r www-data -g www-data
11   fi
14 post_install() {
15   install -D -m0644 /usr/share/doc/lighttpd2/lighttpd.conf /etc/lighttpd2/lighttpd.conf
16   install -D -m0644 /usr/share/doc/lighttpd2/angel.conf /etc/lighttpd2/angel.conf
17   install -D -m0644 /usr/share/doc/lighttpd2/mimetypes.conf /etc/lighttpd2/mimetypes.conf
18   echo "Lighttpd2 is installed, start with
19         /usr/sbin/lighttpd2 -c /etc/lighttpd2/angel.conf or link /etc/sv/lighttpd2 to your 
20         supervised (runit/daemontools) directory." 
21   post_upgrade
24 post_upgrade() {
25   echo "Lighttpd's default configuration available in
26         /usr/share/doc/lighttpd2/*.conf"
29 # vim:set ts=2 sw=2 et: