boot-archive (662:524269c34bb5) boot-archive (1573:7338e65f2666)
1#!/sbin/sh
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
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.
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance 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#
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
24# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
23# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
25# Use is subject to license terms.
26#
27# ident "%Z%%M% %I% %E% SMI"
28
24# Use is subject to license terms.
25#
26# ident "%Z%%M% %I% %E% SMI"
27
28#
29# Check the boot archive content against root filesystem.
30# Return failure if they differ.
31#
32
29. /lib/svc/share/smf_include.sh
30. /lib/svc/share/fs_include.sh
31
32#
33# no boot-archive on sparc...yet
34#
35if [ `uname -p` = "sparc" ]; then
36 exit $SMF_EXIT_OK
37fi
38
33. /lib/svc/share/smf_include.sh
34. /lib/svc/share/fs_include.sh
35
36#
37# no boot-archive on sparc...yet
38#
39if [ `uname -p` = "sparc" ]; then
40 exit $SMF_EXIT_OK
41fi
42
39#
40# Check the boot archive content against root filesystem.
41# Return failure if they differ.
42#
43if [ "${_INIT_ZONENAME:=`/sbin/zonename`}" != "global" ]; then
44 exit $SMF_EXIT_OK
45fi
43smf_is_globalzone || exit $SMF_EXIT_OK
46
47#
48# Make sure we return failure only once. If user choose to ignore
49# error, we return success to permit boot to continue. The boot
50# archive will be updated on the subsequent shutdown.
51#
52ERRORFILE=/etc/svc/volatile/boot_archive_error
53if [ -f "${ERRORFILE}" ]; then

--- 26 unchanged lines hidden ---
44
45#
46# Make sure we return failure only once. If user choose to ignore
47# error, we return success to permit boot to continue. The boot
48# archive will be updated on the subsequent shutdown.
49#
50ERRORFILE=/etc/svc/volatile/boot_archive_error
51if [ -f "${ERRORFILE}" ]; then

--- 26 unchanged lines hidden ---