File: prerm

package info (click to toggle)
cron 3.0pl1-100
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 468 kB
  • ctags: 411
  • sloc: ansic: 3,735; perl: 713; sh: 214; makefile: 144
file content (12 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

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

#DEBHELPER#