File: perdition.preinst

package info (click to toggle)
perdition 2.2-3.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 3,628 kB
  • sloc: ansic: 14,571; sh: 5,274; makefile: 443
file content (13 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

#DEBHELPER#

set -e

if [ "$1" = "upgrade" -a -f /etc/init.d/perdition ]; then
    if [ -f /etc/init.d/perdition ]; then
        invoke-rc.d perdition stop
    fi
fi      
        
exit 0