#! /bin/sh # # Copyright (c) 1999 by Sun Microsystems, Inc. # All Rights Reserved # # @(#)r.OWconfig.m4 1.8 99/01/26 SMI # # Removal script for the server class # Remove any entries that belong to this package # while read src do if [ -w $src ]; then cp $src /tmp/OWconfig || exit 2 sed -e "/# Start SUNWglrt, OpenGL SUNWGLX Extension/,/# End SUNWglrt, OpenGL SUNWGLX Extension/d" /tmp/OWconfig > $src || exit 2 rm -f /tmp/OWconfig fi installf -c OWconfig $PKGINST $src e 0644 root bin || exit 2 if [ ! -s $src ]; then echo "No entries in $src, Removing $src" rm -f $src fi done installf -f $PKGINST || exit 2 exit 0