17950N/A#!/bin/ksh -p
17950N/A#
17950N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
17950N/A# Use is subject to license terms.
17950N/A#
17950N/A# Permission is hereby granted, free of charge, to any person obtaining a
17950N/A# copy of this software and associated documentation files (the
17950N/A# "Software"), to deal in the Software without restriction, including
17950N/A# without limitation the rights to use, copy, modify, merge, publish,
17950N/A# distribute, and/or sell copies of the Software, and to permit persons
17950N/A# to whom the Software is furnished to do so, provided that the above
17950N/A# copyright notice(s) and this permission notice appear in all copies of
17950N/A# the Software and that both the above copyright notice(s) and this
17950N/A# permission notice appear in supporting documentation.
17950N/A#
17950N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17950N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17950N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
17950N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
17950N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
17950N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
17950N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
17950N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
17950N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17950N/A#
17950N/A# Except as contained in this notice, the name of a copyright holder
17950N/A# shall not be used in advertising or otherwise to promote the sale, use
17950N/A# or other dealings in this Software without prior written authorization
17950N/A# of the copyright holder.
17950N/A#
17950N/A###########################################################################
17950N/A#
17950N/A
17950N/APATH=/usr/bin:/usr/sbin
17950N/A
17950N/A. /lib/svc/share/smf_include.sh
17950N/A
17950N/AUSAGE="Usage: $0 { start | refresh }"
17950N/A
17950N/Aif [ $# -ne 1 ] ; then
17950N/A echo $USAGE
17950N/A exit 2
17950N/Afi
17950N/A
17950N/ACATALOG_INSTALL=/usr/share/sgml/docbook/docbook-catalog-install.sh
17950N/ACATALOG_UNINSTALL=/usr/share/sgml/docbook/docbook-catalog-uninstall.sh
17950N/A
19786N/Afix_empty_catalogs ()
19786N/A{
19786N/A # If the catalog exists, but is empty, we need to initialise it with a basic
19786N/A # xml file, otherwise, the updating will fail.
19786N/A if [ ! -s /etc/xml/docbook-xmlcatalog ]; then
19786N/A cp /etc/xml/docbook-empty-catalog /etc/xml/docbook-xmlcatalog
19786N/A fi
19786N/A if [ ! -s /etc/xml/catalog ]; then
19786N/A cp /etc/xml/docbook-empty-catalog /etc/xml/catalog
19786N/A fi
19786N/A}
19786N/A
17950N/Astart_docbook_catalog_update ()
17950N/A{
20082N/A fix_empty_catalogs
20082N/A # is it an empty catalog?
20082N/A cmp -s /etc/xml/catalog /etc/xml/docbook-empty-catalog
20082N/A # or is there an updated catalog-install script?
20082N/A if [ $? == 0 -o $CATALOG_INSTALL -nt /etc/xml/catalog ]; then
20082N/A $CATALOG_INSTALL
20082N/A fi
17950N/A}
17950N/A
17950N/Arefresh_docbook_catalog_update ()
17950N/A{
19907N/A $CATALOG_UNINSTALL > /dev/null 2>&1
19907N/A fix_empty_catalogs
19907N/A $CATALOG_INSTALL
17950N/A}
17950N/A
17950N/AMETHOD=$1
17950N/A
17950N/Acase "$METHOD" in
17950N/A 'start')
17950N/A # Continue with rest of script
17950N/A ;;
17950N/A 'refresh')
17950N/A # Continue with rest of script
17950N/A ;;
17950N/A -*)
17950N/A echo $USAGE
17950N/A exit 2
17950N/A ;;
17950N/A *)
17950N/A echo "Invalid method $METHOD"
17950N/A exit 2
17950N/A ;;
17950N/Aesac
17950N/A
17950N/A${METHOD}_docbook_catalog_update
17950N/A
17950N/Aexit $SMF_EXIT_OK