File: apache2-mpm-prefork.preinst

package info (click to toggle)
apache2 2.0.54-5sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,260 kB
  • ctags: 176
  • sloc: sh: 533; makefile: 367; python: 209; perl: 127
file content (17 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

#Debian preinstall handling for apache2
# Thom May <thom@debian.org>

case "$1" in
	install)
		rm -f /var/cache/apache2/reload
		;;
	upgrade)
		if [ -d /var/cache/apache2 ]; then
			touch /var/cache/apache2/reload
		fi
		;;
	*)
		;;
esac