OSDN Git Service

Plugin::Sendmail: fix warning message
[newslash/newslash.git] / debian / newslash-core.postrm
1 #! /bin/sh
2 # postinst script for slash
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 case "$1" in
9     remove)
10     ;;
11
12     deconfigure|failed-upgrade)
13
14     ;;
15
16     *)
17       echo "postinst called with unknown argument \`$1'" >&2
18       exit 1
19     ;;
20 esac
21
22 # dh_installdeb will replace this with shell code automatically
23 # generated by other debhelper scripts.
24
25 #DEBHELPER#
26
27 exit 0