postinstall revision f875b4ebb1dd9fdbeb043557cab38ab3bf7f6e01
0N/A#!/bin/sh
1703N/A#
0N/A# CDDL HEADER START
0N/A#
0N/A# The contents of this file are subject to the terms of the
0N/A# Common Development and Distribution License (the "License").
0N/A# You may not use this file except in compliance with the License.
0N/A#
0N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0N/A# or http://www.opensolaris.org/os/licensing.
0N/A# See the License for the specific language governing permissions
0N/A# and limitations under the License.
0N/A#
0N/A# When distributing Covered Code, include this CDDL HEADER in each
0N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0N/A# If applicable, add the following below this CDDL HEADER, with the
0N/A# fields enclosed by brackets "[]" replaced with your own identifying
0N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1472N/A#
1472N/A# CDDL HEADER END
1472N/A#
1703N/A#
0N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
0N/A# Use is subject to license terms.
0N/A#
0N/A#ident "%Z%%M% %I% %E% SMI"
0N/A#
0N/A
0N/APATH=/usr/bin:/usr/sbin
0N/ACLEANUP=/tmp/CLEANUP
0N/A
0N/ALBLMOD1=$BASEDIR/kernel/sys/lbl_edition
0N/ALBLMOD2=$BASEDIR/kernel/sys/amd64/lbl_edition
0N/ALBLMOD3=$BASEDIR/kernel/sys/sparcv9/lbl_edition
0N/A
0N/Aif [ -f $LBLMOD1 -o -f $LBLMOD2 -o -f $LBLMOD3 ]; then
0N/A # Set sys_labeling in etc/system
0N/A grep -v "sys_labeling=" $BASEDIR/etc/system > /tmp/etc.system.$$
1703N/A echo "set sys_labeling=1" >> /tmp/etc.system.$$
1703N/A mv /tmp/etc.system.$$ $BASEDIR/etc/system
0N/A grep "set sys_labeling=1" ${BASEDIR}/etc/system > /dev/null 2>&1
0N/A if [ $? -ne 0 ]; then
0N/A echo "cannot set sys_labeling in $BASEDIR/etc/system"
0N/A exit 1
1703N/A fi
0N/A
0N/A rm -f $LBLMOD1 > /dev/null 2>&1
0N/A rm -f $LBLMOD2 > /dev/null 2>&1
0N/A rm -f $LBLMOD3 > /dev/null 2>&1
0N/A
0N/A cat >> $BASEDIR/var/svc/profile/upgrade <<\__SMF_ENABLE
0N/A /usr/sbin/svcadm enable -s svc:/system/labeld:default
91N/A__SMF_ENABLE
0N/A
0N/Afi
1838N/A
1838N/Aexit 0
1838N/A