diff options
Diffstat (limited to 'pkg/deb/debian.module/preinst.in')
-rw-r--r-- | pkg/deb/debian.module/preinst.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg/deb/debian.module/preinst.in b/pkg/deb/debian.module/preinst.in new file mode 100644 index 00000000..51bdfc93 --- /dev/null +++ b/pkg/deb/debian.module/preinst.in @@ -0,0 +1,21 @@ +#!/bin/sh + +set -e + +case "$1" in + install) +%%MODULE_POST%% + ;; + upgrade) + ;; + abort-upgrade) + ;; + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +#DEBHELPER# + +exit 0 |