~ubuntu-branches/ubuntu/trusty/opendrim-lmp-ssh/trusty

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Guillaume BOTTEX
  • Date: 2010-07-07 11:04:10 UTC
  • Revision ID: james.westby@ubuntu.com-20100707110410-psin30fvlp9ts9aq
Tags: 1.0.0-0ubuntu1
Initial release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
# postinst script for opendrim-lmp-baseserver
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
# summary of how this script can be called:
 
9
#        * <postinst> `configure' <most-recently-configured-version>
 
10
#        * <old-postinst> `abort-upgrade' <new version>
 
11
#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
 
12
#          <new-version>
 
13
#        * <postinst> `abort-remove'
 
14
#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
 
15
#          <failed-install-package> <version> `removing'
 
16
#          <conflicting-package> <version>
 
17
# for details, see http://www.debian.org/doc/debian-policy/ or
 
18
# the debian-policy package
 
19
 
 
20
 
 
21
case "$1" in
 
22
    configure)
 
23
    CIMNAMESPACE=root/cimv2
 
24
    VENDOR=OpenDRIM
 
25
    CIMSERVER=sfcb
 
26
    INTEROPNAMESPACE=root/interop
 
27
    APP_NAME=opendrim-lmp-ssh
 
28
    VERSION=`cat /usr/share/doc/opendrim-lmp-ssh/VERSION`
 
29
    OPENDRIM_REG_DIR=/usr/share/OpenDRIM
 
30
    PROVIDER_SCRIPT_POST=SSH
 
31
 
 
32
    $OPENDRIM_REG_DIR/$APP_NAME/registration/$PROVIDER_SCRIPT_POST.sh $CIMNAMESPACE $VENDOR $CIMSERVER $INTEROPNAMESPACE $VERSION $OPENDRIM_REG_DIR/$APP_NAME
 
33
    ;;
 
34
 
 
35
    abort-upgrade|abort-remove|abort-deconfigure)
 
36
    ;;
 
37
 
 
38
    *)
 
39
        echo "postinst called with unknown argument \`$1'" >&2
 
40
        exit 1
 
41
    ;;
 
42
esac
 
43
 
 
44
# dh_installdeb will replace this with shell code automatically
 
45
# generated by other debhelper scripts.
 
46
 
 
47
#DEBHELPER#
 
48
 
 
49
exit 0