mpxio-upgrade revision 7c478bd95313f5f23a4c958a745db2134aa03244
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#ident "%Z%%M% %I% %E% SMI"
# Make sure that the essential libraries can be found.
# map $special and $fsckdev
{
if [ $? -eq 0 ]; then
fi
if [ $? -eq 0 ]; then
fi
}
{
cecho "\nERROR: stmsboot: $1"
#
# display recovery instructions - the first call logs to the service
# log and the second call displays on the console.
#
shcat $RECOVERFILE >/dev/msglog 2>&1
cecho "These instructions were also logged to the file $RECOVERFILE\n"
}
#
# root ("/") is already mounted read only by the kernel.
# Remount the root read-write.
#
{
exec < $vfstab; readvfstab /
mntopts='remount'
}
#
# mount /usr read only
#
{
exec < $vfstab; readvfstab "/usr"
ret_val=0
# Mount read-only without the cache.
*backfstype=nfs*)
;;
*backfstype=hsfs*)
;;
*)
cecho 'stmsboot: invalid vfstab entry for /usr'
;;
esac
ret_val=$?
else
#
# Must use -o largefiles here to ensure the read-only
# mount does not fail as a result of having a large
# file present on /usr.
#
mntopts='ro,largefiles'
else
fi
fi
#
# Requesting logging on a read-only mount
# causes errors to be displayed, so remove
# "logging" from the list of options.
#
fi
fi
#
# In case of a manual restart of the service, mount
# will emit messages if /usr is already mounted.
#
ret_val=$?
fi
fi
fi
return $ret_val
}
# update system dump configuration
{
if [ "x$4" != x ]; then
newname=`$STMSBOOTUTIL -M $4`
if [ $? -eq 0 ]; then
cecho "stmsboot: dump configuration has been \
updated."
else
mpxio_error "failed to configure $newname as \
the dump device.\nold dump device name: $4"
return 1
fi
fi
fi
return 0
}
#
# do the actual work
#
{
#
# NOTE: If the first attempt to run the service has failed due to an
# expected error, users should be able to manually rerun the service.
#
# First mount /usr read only. This must be done to run
# utilities such as fsck and devfsadm.
# In the case of a manual rerun of the service, mounting of /usr here
# fails if /usr already happens to be mounted. It is better that we
# do not mount /usr if already mounted, but there seems to be no
# apparent way to check whether /usr is mounted or not as we mount
# explicitly checking for mount failures, we just do a sanity check
# by looking for some file (in this case devfsadm) in /usr.
#
if [ ! -s $DEVFSADM ]; then
mpxio_error "failed to mount the /usr filesystem."
return
fi
if mpxio_mount_root; then
# create /dev links
cecho "stmsboot: configuring devices"
if $STMSBOOTUTIL -u >/dev/msglog 2>&1; then
if update_dumpconf; then
# update svm configuration to reflect new names
[ -x $METADEVADM ]; then
$METADEVADM -r >/dev/msglog 2>&1
fi
fi
else
mpxio_error "failed to update /etc/vfstab."
fi
else
mpxio_error "failed to mount the root filesystem."
if [ $usrmounted -eq 1 ]; then
fi
fi
}