9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
{
|
|
foreach my $iface ( qw(InternalInterface ExternalInterface) )
|
|
{
|
|
my $iface = $DB->get($iface) || next;
|
|
next unless $iface->prop('HWAddress');
|
|
$iface->delete_prop('HWAddress');
|
|
}
|
|
}
|