xref: /illumos-gate/usr/src/cmd/initpkg/rc1.sh (revision bbf21555)
1#!/sbin/sh
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License, Version 1.0 only
7# (the "License").  You may not use this file except in compliance
8# with the License.
9#
10# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11# or http://www.opensolaris.org/os/licensing.
12# See the License for the specific language governing permissions
13# and limitations under the License.
14#
15# When distributing Covered Code, include this CDDL HEADER in each
16# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17# If applicable, add the following below this CDDL HEADER, with the
18# fields enclosed by brackets "[]" replaced with your own identifying
19# information: Portions Copyright [yyyy] [name of copyright owner]
20#
21# CDDL HEADER END
22#
23#
24# Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T.
25# All rights reserved.
26#
27#
28# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
29# Use is subject to license terms.
30#
31
32# "Run Commands" executed when the system is changing to init state 1
33
34if [ -z "$SMF_RESTARTER" ]; then
35	echo "Cannot be run outside smf(7)"
36	exit 1
37fi
38
39. /lib/svc/share/smf_include.sh
40
41PATH=/usr/sbin:/usr/bin
42
43action=$1
44
45# Export boot parameters to rc scripts
46
47set -- `/usr/bin/who -r`
48
49_INIT_RUN_LEVEL="$7"	# Current run-level
50_INIT_RUN_NPREV="$8"	# Number of times previously at current run-level
51_INIT_PREV_LEVEL="$9"	# Previous run-level
52
53set -- `/usr/bin/uname -a`
54
55_INIT_UTS_SYSNAME="$1"  # Operating system name (uname -s)
56_INIT_UTS_NODENAME="$2" # Node name (uname -n)
57_INIT_UTS_RELEASE="$3"  # Operating system release (uname -r)
58_INIT_UTS_VERSION="$4"  # Operating system version (uname -v)
59_INIT_UTS_MACHINE="$5"  # Machine class (uname -m)
60_INIT_UTS_ISA="$6"      # Instruction set architecture (uname -p)
61_INIT_UTS_PLATFORM="$7" # Platform string (uname -i)
62
63export _INIT_RUN_LEVEL _INIT_RUN_NPREV _INIT_PREV_LEVEL \
64    _INIT_UTS_SYSNAME _INIT_UTS_NODENAME _INIT_UTS_RELEASE _INIT_UTS_VERSION \
65    _INIT_UTS_MACHINE _INIT_UTS_ISA _INIT_UTS_PLATFORM
66
67. /lib/svc/share/fs_include.sh
68
69case $action in
70	stop)
71		>/etc/nologin
72
73		# All remote filesystem services must be explicitly disabled
74		# at init run level 1, and at the single-user milestone.
75
76		if [ -d /etc/rc1.d ]; then
77			for f in /etc/rc1.d/K*; do
78				if [ ! -s $f ]; then
79					continue;
80				fi
81
82				case $f in
83					*.sh)	/lib/svc/bin/lsvcrun -s $f stop
84						;;
85					*)	/lib/svc/bin/lsvcrun $f stop ;;
86				esac
87			done
88		fi
89
90		;;
91
92	start)
93		if [ -d /etc/rc1.d ]; then
94			for f in /etc/rc1.d/S*; do
95				if [ ! -s $f ]; then
96					continue;
97				fi
98
99				case $f in
100					*.sh)	/lib/svc/bin/lsvcrun -s $f start
101						;;
102					*)	/lib/svc/bin/lsvcrun $f start ;;
103				esac
104			done
105		fi
106
107		;;
108
109	*)
110		echo "Usage: $0 { start | stop }"
111		exit $SMF_EXIT_ERR_CONFIG
112		;;
113esac
114
115exit $SMF_EXIT_OK
116