preremove revision fcf3ce441efd61da9bb2884968af01cb7c1452cc
2035N/A#!/bin/sh
2035N/A#
2035N/A# CDDL HEADER START
2035N/A#
2035N/A# The contents of this file are subject to the terms of the
2035N/A# Common Development and Distribution License (the "License").
2035N/A# You may not use this file except in compliance with the License.
2035N/A#
2035N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2035N/A# or http://www.opensolaris.org/os/licensing.
2035N/A# See the License for the specific language governing permissions
2035N/A# and limitations under the License.
2035N/A#
2035N/A# When distributing Covered Code, include this CDDL HEADER in each
2035N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2035N/A# If applicable, add the following below this CDDL HEADER, with the
2035N/A# fields enclosed by brackets "[]" replaced with your own identifying
2035N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2035N/A#
2035N/A# CDDL HEADER END
2035N/A#
2035N/A#
5403N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
2035N/A# Use is subject to license terms.
5680N/A#
2035N/A
2035N/APATH="/usr/bin:/usr/sbin:${PATH}"
5403N/Aexport PATH
5403N/A
2035N/ADRVR_NAME=iscsi
5774N/A
2035N/A# Remove the driver entries but leave it attached.
5774N/A/usr/sbin/rem_drv -b ${BASEDIR} ${DRVR_NAME}
2035N/A
5774N/Aexit 0
2035N/A