From 6073d24b47605f4430c3390fca8433b951a43809 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Wed, 18 May 2011 18:05:49 +0000 Subject: [PATCH] Support bootoption ngcpnobonding. This is needed if we want to deploy ngcp pro in a virtual environment where we have only one NIC. From: Michael Prokop --- deployment.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deployment.sh b/deployment.sh index e9b6edc..d1a9718 100755 --- a/deployment.sh +++ b/deployment.sh @@ -93,6 +93,12 @@ if checkBootParam nocolorlogo ; then LOGO=false fi +if checkBootParam ngcpnobonding ; then + BONDING=false +else + BONDING=true +fi + ## detect environment {{{ if dmidecode| grep -q 'Location In Chassis'; then CHASSIS="Running in blade chassis $(dmidecode| awk '/Location In Chassis/ {print $4}')"