1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#include "variables"
#! /bin/bash -e
#
# <% postinst %> script for <:=${PACKAGE}:>
#
<:=@COPYRIGHT:>//
set -o posix
<:
# parse <% debconf %> database: do not remove,
# even if no further use of it is made here
:>//
source <:=${CONFMODULE}:>
db_version 2.0
case "${1}" in
abort-deconfigure|abort-remove|abort-upgrade|configure) :;;
*) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \
"Unknown argument: \"${1}\"."
exit 1
esac
<:# Emacs install :>//
case "${1}" in abort-deconfigure|abort-remove|abort-upgrade|configure)
<:=${EINSTALL}:> <:=${PACKAGE}:>
esac
exit 0
<:
# arch-tag: 3b9edfc5-752f-46b3-a095-3346d42ba686
#
# local variables:
# mode: shell-script
# coding: utf-8
# ispell-local-dictionary: "american"
# ispell-check-comments: exclusive
# end:
:>//
|