File: icecc.prerm

package info (click to toggle)
icecc 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,444 kB
  • sloc: cpp: 13,720; sh: 2,949; ansic: 767; xml: 744; makefile: 233; asm: 2
file content (12 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# prerm script for icecc

set -e

#DEBHELPER#

if [ -x "/etc/init.d/icecc-scheduler" ]; then
        invoke-rc.d icecc-scheduler stop || exit $?
fi

exit 0