From 426d072a7275e40cc7e0ae2e36ab0ce41b930f19 Mon Sep 17 00:00:00 2001 From: linggao Date: Fri, 19 Aug 2011 13:54:19 +0000 Subject: [PATCH] minor fix for routeop git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10323 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/routeop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT/postscripts/routeop b/xCAT/postscripts/routeop index 16ff37607..123309a65 100755 --- a/xCAT/postscripts/routeop +++ b/xCAT/postscripts/routeop @@ -79,7 +79,7 @@ if [[ "$result" == "0" ]]; then if [[ $OSTYPE = linux* ]]; then cmd="route add -net $net netmask $mask gw $gw" else - cmd="/etc/route add -net $net -netmask $mask $gw" + cmd="route add -net $net -netmask $mask $gw" fi echo "$cmd" result=`$cmd 2>&1`