~robert-tari/tsmuxer/trunk

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Robert Tari
  • Date: 2013-08-08 15:21:18 UTC
  • Revision ID: robert.tari@gmail.com-20130808152118-f5clglt2pqc3xtqu
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -e
 
4
 
 
5
case "$1" in
 
6
 
 
7
    configure)
 
8
    ;;
 
9
 
 
10
    abort-upgrade|abort-remove|abort-deconfigure)
 
11
    ;;
 
12
 
 
13
    *)
 
14
        echo "postinst called with unknown argument \`$1'" >&2
 
15
        exit 1
 
16
    ;;
 
17
esac
 
18
 
 
19
#DEBHELPER#
 
20
 
 
21
exit 0