From f62bdf31219c12f8657c2c414d34e3392313b4e3 Mon Sep 17 00:00:00 2001 From: billwajda Date: Thu, 16 Apr 2015 13:35:59 -0400 Subject: [PATCH] fixed a syntax error in dhcp.pm --- xCAT-server/lib/xcat/plugins/dhcp.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/dhcp.pm b/xCAT-server/lib/xcat/plugins/dhcp.pm index c2ac08bac..57dbe376e 100755 --- a/xCAT-server/lib/xcat/plugins/dhcp.pm +++ b/xCAT-server/lib/xcat/plugins/dhcp.pm @@ -2044,7 +2044,7 @@ sub addnet6 $callback->( { error => - ["Could not add the subnet $net/$mask for nic $nic into $dhcpconffile.\nPlease verify the xCAT database matches networks defined on this system."], + ["Could not add the subnet $net for interface $iface into $dhcpconffile.\nPlease verify the xCAT database matches networks defined on this system."], errorcode => [1] } ); @@ -2184,7 +2184,7 @@ sub addnet $callback->( { error => - ["Could not add the subnet $net/$mask for nic $nic into $dhcpconffile.\nPlease verify the xCAT database matches networks defined on this system."], + ["Could not add the subnet $net for interface $nic into $dhcpconffile.\nPlease verify the xCAT database matches networks defined on this system."], errorcode => [1] } );