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