diff options
author | Alex Harpin <development@landsofshadow.co.uk> | 2015-11-08 11:09:29 +0000 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-09-14 14:11:40 +0200 |
commit | e7fbb9edf93f88cf9385f95fe8b1aea763918615 (patch) | |
tree | 01b39d8b0d917534f4ea0dedafae5c419d3c071b | |
parent | 986875cdf2aa41be670bfbbb47d002e2efcc7536 (diff) | |
download | vyatta-cfg-system-e7fbb9edf93f88cf9385f95fe8b1aea763918615.tar.gz vyatta-cfg-system-e7fbb9edf93f88cf9385f95fe8b1aea763918615.zip |
vyatta-cfg-system: update get_offload_option function due to rename
Update the get_offload_option function to take account of the offload
node renaming.
Bug #612 http://bugzilla.vyos.net/show_bug.cgi?id=612
-rwxr-xr-x | scripts/vyatta-interfaces.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/vyatta-interfaces.pl b/scripts/vyatta-interfaces.pl index e57e384b..367105c3 100755 --- a/scripts/vyatta-interfaces.pl +++ b/scripts/vyatta-interfaces.pl @@ -580,10 +580,11 @@ sub allowed_speed { sub get_offload_option { my ($dev, $option) = @_; my ($val); + my $ethtool_option = "$option-offload"; open(my $ethtool, '-|', "$ETHTOOL -k $dev 2>&1") or die "ethtool failed: $!\n"; while (<$ethtool>) { - next if ($_ !~ m/$option:/); + next if ($_ !~ m/$ethtool_option:/); chomp; $val = (split(/: /, $_))[1]; } |