File: fetchmail.prerm

package info (click to toggle)
fetchmail 6.3.6-1etch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 6,344 kB
  • ctags: 3,617
  • sloc: ansic: 26,507; sh: 4,967; perl: 3,180; python: 1,920; yacc: 448; makefile: 331; lex: 277; awk: 124; lisp: 84; sed: 16
file content (14 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Stops daemon if it is running under our control
if [ -x /etc/init.d/fetchmail ]; then
	if [ -x /usr/sbin/invoke-rc.d ]; then
		invoke-rc.d --quiet fetchmail stop
	else
		/etc/init.d/fetchmail stop
	fi
fi

#DEBHELPER#

exit 0