File: pysieved.prerm

package info (click to toggle)
pysieved 1.2-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 368 kB
  • ctags: 313
  • sloc: python: 2,229; sh: 16; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
# prerm script for pysieved
#
# see: dh_installdeb(1)

set -e

. /usr/share/debconf/confmodule

case "$1" in
    remove|purge)
    # De-Register the daemon with the inetd
    update-inetd --remove sieve
    ;;
esac


# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0