File: prerm

package info (click to toggle)
scanlogd 2.2.8-0.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 176 kB
  • sloc: ansic: 533; makefile: 102; sh: 97
file content (12 lines) | stat: -rw-r--r-- 171 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

# orginal by dh_installinit
if which invoke-rc.d >/dev/null 2>&1; then
    invoke-rc.d scanlogd stop
else
    /etc/init.d/scanlogd stop
fi

#DEBHELPER#