Update triggers to use passed args, use /bin/sh -e.

Bump xbps-base-files to 0.30.

--HG--
extra : convert_revision : 6158c0bed798e097ba75c902a0be2498e3361e02
This commit is contained in:
Juan RP 2009-12-11 07:23:49 +01:00
parent 934de7606f
commit af1b82c40a
13 changed files with 159 additions and 86 deletions

View file

@ -1,13 +1,20 @@
#!/bin/sh
#!/bin/sh -e
#
# Registers or unregisters SGML/XML catalog entries, through
# the xmlcatmgr application.
#
# Arguments: $1 = action [run/targets]
# $2 = target [post-install/pre-remove]
# $3 = pkgname
# $4 = version
# Arguments: $ACTION = [run/targets]
# $TARGET = [post-install/pre-remove]
# $PKGNAME
# $VERSION
# $UPDATE = [yes/no]
#
ACTION="$1"
TARGET="$2"
PKGNAME="$3"
VERSION="$4"
UPDATE="$5"
sgml_catalog=usr/share/sgml/catalog
xml_catalog=usr/share/xml/catalog
@ -58,7 +65,7 @@ unregister_entries()
fi
}
case "$1" in
case "$ACTION" in
targets)
echo "post-install pre-remove"
;;
@ -67,7 +74,7 @@ run)
[ -n "${sgml_entries}" -a ! -f "${sgml_catalog}" ] && exit 0
[ -n "${xml_entries}" -a ! -f "${xml_catalog}" ] && exit 0
case "$2" in
case "$TARGET" in
post-install)
register_entries
;;