blob: ac8e0840265c096a400e726d3e37a45eab35e69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
set -e
# Adjust to the new config location, in /etc/apache2/conf.d/sitesummary
if [ -f /etc/apache2/sites-available/sitesummary ] ; then
if [ -f /etc/apache2/sites-enabled//sitesummary ] &&
[ -x /usr/sbin/a2dissite ] ; then
a2dissite sitesummary
fi
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
# Generate the web page at install time
[ -f /var/lib/sitesummary/www/index.html ] || /etc/cron.daily/sitesummary
#DEBHELPER#
|