File: python-rpy-doc.postinst

package info (click to toggle)
rpy 1.0.3-30
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 704 kB
  • ctags: 670
  • sloc: ansic: 2,140; python: 1,592; makefile: 134; sh: 69
file content (21 lines) | stat: -rw-r--r-- 357 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
#!/bin/sh
#
# postinst script for the Debian GNU/Linux python-rpy-doc package
#
# Dirk Eddelbuettel <edd@debian.org>   

set -e

#DEBHELPER#

case "$1" in
    configure)     
       ;;
    abort-upgrade|abort-remove|abort-deconfigure)
        ;;
    *)
        echo "postinst called with unknown argument \`$1'" >&2
        ;;
esac

exit 0