File: prerm

package info (click to toggle)
cron 3.0pl1-86
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 412 kB
  • ctags: 386
  • sloc: ansic: 3,652; sh: 194; makefile: 135
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#