File: prerm

package info (click to toggle)
cntlm 0.92.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 440 kB
  • sloc: ansic: 5,301; makefile: 173; sh: 145
file content (15 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

#DEBHELPER#

# Automatically added by dh_installinit
if [ -x "/etc/init.d/cntlm" ]; then
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d cntlm stop || exit $?
	else
		/etc/init.d/cntlm stop || exit $?
	fi
fi
# End automatically added section