File: prerm

package info (click to toggle)
postfix-gld 1.7-8
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 480 kB
  • sloc: ansic: 1,447; sql: 169; sh: 112; makefile: 109
file content (9 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
case "$1" in
  upgrade|remove|deconfigure)
    if [ -x /etc/init.d/gld ]; then
      invoke-rc.d gld stop
    fi
    ;;
esac