File: postinst

package info (click to toggle)
xtrs 4.9c-3.2
  • links: PTS
  • area: contrib
  • in suites: squeeze
  • size: 2,236 kB
  • ctags: 1,431
  • sloc: ansic: 19,941; makefile: 248; csh: 132; sh: 129
file content (23 lines) | stat: -rw-r--r-- 548 bytes parent folder | download | duplicates (4)
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 111 2008-02-07 04:12:07Z 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 sw=4 ts=4 tw=80: