File: nvclock.postinst

package info (click to toggle)
nvclock 0.8b3-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,452 kB
  • ctags: 1,603
  • sloc: ansic: 23,997; cpp: 797; makefile: 271; sh: 197
file content (31 lines) | stat: -rw-r--r-- 628 bytes parent folder | download | duplicates (3)
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
#!/bin/sh
# postinst script for nvclock
#
# Mostly stolen from the Debian xdm scripts
# Copyright 1998, 1999 Branden Robinson.  Licensed under the GNU GPL.
# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava.
#
# see: dh_installdeb(1)

set -e
#. /usr/share/debconf/confmodule
# db_version 2.0

case "$1" in
    configure)
    ;;
    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0