mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-07-25 15:04:30 +00:00
18 lines
310 B
Bash
18 lines
310 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = remove ] ; then
|
|
a2dissite tileserver_site || true
|
|
a2ensite default || true
|
|
a2dismod -q -f tile || true
|
|
invoke-rc.d apache2 restart || true
|
|
fi
|
|
|
|
# automatically remove munin plugins
|
|
if [ -d /etc/munin/plugins ]
|
|
then
|
|
rm -f /etc/munin/plugins/mod_tile*
|
|
fi
|
|
|
|
#DEBHELPER#
|