2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-07-28 07:11:11 +00:00

fixed a syntax error in dhcp.pm

This commit is contained in:
billwajda
2015-04-16 13:35:59 -04:00
committed by WangXiaoPeng
parent a2c5a0be58
commit f62bdf3121

View File

@@ -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]
}
);