OSDN Git Service

template: fix comment related problem
[newslash/newslash.git] / debian / newslash-core.prerm
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|upgrade)
10     ;;
11
12     deconfigure|failed-upgrade)
13     ;;
14
15     *)
16       echo "postinst called with unknown argument \`$1'" >&2
17       exit 1
18     ;;
19 esac
20
21 # dh_installdeb will replace this with shell code automatically
22 # generated by other debhelper scripts.
23
24 #DEBHELPER#
25
26 exit 0