File: postrm

package info (click to toggle)
javascript-common 5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 52 kB
  • sloc: sh: 32; makefile: 23
file content (19 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e

if [ -L /etc/apache2/conf.d/javascript-common.conf ]
then
	rm -f /etc/apache2/conf.d/javascript-common.conf
	restart="apache2"
fi

if [ -e /usr/share/wwwconfig-common/restart.sh ]
then
	servers="apache2"
	. /usr/share/wwwconfig-common/restart.sh
fi

#DEBHELPER#

exit 0