47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
|
#!/bin/sh
|
||
|
# postinst script for xcat-client
|
||
|
#
|
||
|
# see: dh_installdeb(1)
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# summary of how this script can be called:
|
||
|
# * <postinst> `configure' <most-recently-configured-version>
|
||
|
# * <old-postinst> `abort-upgrade' <new version>
|
||
|
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
||
|
# <new-version>
|
||
|
# * <postinst> `abort-remove'
|
||
|
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
||
|
# <failed-install-package> <version> `removing'
|
||
|
# <conflicting-package> <version>
|
||
|
# for details, see http://www.debian.org/doc/debian-policy/ or
|
||
|
# the debian-policy package
|
||
|
|
||
|
|
||
|
case "$1" in
|
||
|
configure)
|
||
|
|
||
|
cat << EOF > /etc/profile.d/xcat.sh
|
||
|
XCATROOT=/opt/xcat
|
||
|
PATH=\$PATH:\$XCATROOT/bin:\$XCATROOT/sbin
|
||
|
MANPATH=\$MANPATH:\$XCATROOT/share/man:
|
||
|
export XCATROOT PATH MANPATH
|
||
|
export PERL_BADLANG=0
|
||
|
EOF
|
||
|
|
||
|
chmod 755 /etc/profile.d/xcat.*
|
||
|
|
||
|
exit 0
|
||
|
;;
|
||
|
|
||
|
abort-upgrade|abort-remove|abort-deconfigure)
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "postinst called with unknown argument \`$1'" >&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exit 0
|