~sinfallas/+junk/xanadu-wayland

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: sinfallas at gmail
  • Date: 2017-07-23 19:53:26 UTC
  • Revision ID: sinfallas@gmail.com-20170723195326-wx5o1wh6dmc0ppgf
* first commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
case "$1" in
 
5
        configure)
 
6
        ;;
 
7
 
 
8
        remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear|abort-deconfigure|abort-remove)
 
9
        ;;
 
10
 
 
11
        *)
 
12
                echo "postinst fue invocado con argumentos desconocidos \`$1'" >&2
 
13
                exit 1
 
14
        ;;
 
15
esac
 
16
 
 
17
#DEBHELPER#
 
18
exit 0