308N/A#!/sbin/sh
308N/A#
308N/A# CDDL HEADER START
308N/A#
308N/A# The contents of this file are subject to the terms of the
308N/A# Common Development and Distribution License (the "License").
308N/A# You may not use this file except in compliance with the License.
308N/A#
308N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
308N/A# or http://www.opensolaris.org/os/licensing.
308N/A# See the License for the specific language governing permissions
308N/A# and limitations under the License.
308N/A#
308N/A# When distributing Covered Code, include this CDDL HEADER in each
308N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
308N/A# If applicable, add the following below this CDDL HEADER, with the
308N/A# fields enclosed by brackets "[]" replaced with your own identifying
308N/A# information: Portions Copyright [yyyy] [name of copyright owner]
308N/A#
308N/A# CDDL HEADER END
308N/A#
308N/A#
5548N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
308N/A# Use is subject to license terms.
5680N/A
308N/A# ident "%Z%%M% %I% %E% SMI"
308N/A#
308N/A
5548N/A. /lib/svc/share/smf_include.sh
618N/A
844N/A[ ! -f /etc/zones/global.xml ] && exit $SMF_EXIT_OK # No global zone
5548N/A # resource mgmt.
618N/A # configuration
308N/A
5548N/A[ ! -x /usr/sbin/zoneadm ] && exit $SMF_EXIT_OK # SUNWzoneu not installed
2899N/A
5680N/A# Make sure working directory is / to prevent unmounting problems.
5680N/Acd /
308N/APATH=/usr/sbin:/usr/bin; export PATH
308N/A
308N/Acase "$1" in
5548N/A'start')
5548N/A zoneadm -z global apply
5548N/A if [ $? -ne 0 ]; then
5548N/A exit $SMF_EXIT_ERR_FATAL
5548N/A fi
5015N/A ;;
5680N/A
308N/A*)
5795N/A echo "Usage: $0 start"
5795N/A exit $SMF_EXIT_ERR_FATAL
5795N/A ;;
5548N/Aesac
1938N/Aexit $SMF_EXIT_OK
1938N/A