aboutsummaryrefslogtreecommitdiffstats
path: root/debian/sitesummary.postinst
blob: 7a7753370edb1f721cd45d97a78a0ef13117e9cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

# Adjust to the new config location, in /etc/apache2/conf.d/sitesummary
if [ -f /etc/apache2/sites-available/sitesummary ]; then
    [ -x /usr/sbin/a2dissite ] && a2dissite sitesummary
    rm /etc/apache2/sites-available/sitesummary
fi

# Make sure the cgi script can write to the storage area
chown www-data /var/lib/sitesummary/tmpstorage /var/lib/sitesummary/entries 

#DEBHELPER#