Codebase list jamnntpd / 22bd62b
Remove debian/preinst file as not currently needed. Robert James Clay 10 years ago
1 changed file(s) with 0 addition(s) and 37 deletion(s). Raw diff Collapse all Expand all
+0
-37
debian/preinst less more
0 #!/bin/sh
1 # preinst script for jamnntpd
2 #
3 # see: dh_installdeb(1)
4
5 set -e
6
7 # summary of how this script can be called:
8 # * <new-preinst> `install'
9 # * <new-preinst> `install' <old-version>
10 # * <new-preinst> `upgrade' <old-version>
11 # * <old-preinst> `abort-upgrade' <new-version>
12 # for details, see http://www.debian.org/doc/debian-policy/ or
13 # the debian-policy package
14
15
16 case "$1" in
17 install|upgrade)
18 ;;
19
20 abort-upgrade)
21 ;;
22
23 *)
24 echo "preinst called with unknown argument \`$1'" >&2
25 exit 1
26 ;;
27 esac
28
29 # dh_installdeb will replace this with shell code automatically
30 # generated by other debhelper scripts.
31
32 #DEBHELPER#
33
34 exit 0
35
36