mirror of
https://git.proxmox.com/git/pve-common
synced 2025-07-27 10:01:38 +00:00
whitespace fixup
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
94d786b393
commit
cebd1c85f0
@ -754,17 +754,16 @@ my $extract_ovs_option = sub {
|
|||||||
};
|
};
|
||||||
|
|
||||||
my $check_mtu = sub {
|
my $check_mtu = sub {
|
||||||
my ($ifaces, $parent, $child) = @_;
|
my ($ifaces, $parent, $child) = @_;
|
||||||
|
|
||||||
die "check mtu - missing parent interface\n" if !$parent;
|
die "check mtu - missing parent interface\n" if !$parent;
|
||||||
die "check mtu - missing child interface\n" if !$child;
|
die "check mtu - missing child interface\n" if !$child;
|
||||||
|
|
||||||
my $pmtu = $ifaces->{$parent}->{mtu} ? $ifaces->{$parent}->{mtu} : 1500;
|
|
||||||
my $cmtu = $ifaces->{$child}->{mtu} ? $ifaces->{$child}->{mtu} : 1500;
|
|
||||||
|
|
||||||
die "interface '$parent' - mtu $pmtu is bigger than '$child' - mtu $cmtu\n"
|
my $pmtu = $ifaces->{$parent}->{mtu} ? $ifaces->{$parent}->{mtu} : 1500;
|
||||||
if $pmtu gt $cmtu;
|
my $cmtu = $ifaces->{$child}->{mtu} ? $ifaces->{$child}->{mtu} : 1500;
|
||||||
|
|
||||||
|
die "interface '$parent' - mtu $pmtu is bigger than '$child' - mtu $cmtu\n"
|
||||||
|
if $pmtu gt $cmtu;
|
||||||
};
|
};
|
||||||
|
|
||||||
# config => {
|
# config => {
|
||||||
|
Loading…
Reference in New Issue
Block a user