aboutsummaryrefslogtreecommitdiffstats
path: root/debian/sitesummary.postinst
blob: 84b3f88922a7fb9b694e9b10f52c115337c15ce3 (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
    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#