File: prerm

package info (click to toggle)
boa 0.94.14rc21-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,096 kB
  • ctags: 621
  • sloc: ansic: 7,277; sh: 2,876; perl: 157; makefile: 135
file content (13 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ -x "/etc/init.d/boa" ]; then
	if [ -x /usr/sbin/invoke-rc.d ] ; then
		invoke-rc.d boa stop
	else
		/etc/init.d/boa stop
	fi
fi

#DEBHELPER#