File: postinst

package info (click to toggle)
xtrs 4.9-5
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 2,164 kB
  • ctags: 1,433
  • sloc: ansic: 19,840; makefile: 242; csh: 132; sh: 129
file content (23 lines) | stat: -rw-r--r-- 546 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# Debian xtrs package post-installation script
# Copyright 2001 Branden Robinson.
# Licensed under the GNU General Public License, version 2.  See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.

# $Id: postinst 6 2003-04-29 05:01:09Z branden $

set -e

trap "message ;\
      message 'Received signal.  Aborting xtrs package postinst script.' ;\
      message ;\
      exit 1" 1 2 3 15

# source debconf library
. /usr/share/debconf/confmodule

#DEBHELPER#

exit 0

# vim:set ai et sts=2 sw=2 tw=0: