Sophie

Sophie

distrib > Fedora > 16 > x86_64 > by-pkgid > b2d6497e767063ca6ca74c9803d9b99a > files > 1

iscsi-initiator-utils-6.2.0.872-16.fc16.src.rpm

#!/bin/sh

export LC_ALL=C

if [ "$2" = "down" ]; then
	if ! /sbin/ip route ls | grep -q ^default &&
	   [ -f /var/lock/subsys/iscsi ]; then
		/etc/rc.d/init.d/iscsi stop
	fi
fi

if [ "$2" = "up" ]; then
	if /sbin/ip -o route show dev "$1" | grep -q '^default' && 
	   /sbin/chkconfig iscsi; then
		/etc/rc.d/init.d/iscsi start
	fi
fi