diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-05-24 09:36:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-05-24 10:52:39 +0000 |
commit | aa9f845ac1f6afec7cac09197321e0ecbf196b02 (patch) | |
tree | fa2128dfe654c9b94ae0040bccfb803e5b263a74 /ethtool/bin/ethtool-i40e | |
parent | Adding upstream version 20220524. (diff) | |
download | open-infrastructure-service-tools-aa9f845ac1f6afec7cac09197321e0ecbf196b02.tar.xz open-infrastructure-service-tools-aa9f845ac1f6afec7cac09197321e0ecbf196b02.zip |
Adding upstream version 20220525.upstream/20220525
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ethtool/bin/ethtool-i40e')
-rwxr-xr-x | ethtool/bin/ethtool-i40e | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/ethtool/bin/ethtool-i40e b/ethtool/bin/ethtool-i40e deleted file mode 100755 index 637ae65..0000000 --- a/ethtool/bin/ethtool-i40e +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -# Open Infrastructure: service-tools - -# Copyright (C) 2014-2022 Daniel Baumann <daniel.baumann@open-infrastructure.net> -# -# SPDX-License-Identifier: GPL-3.0+ -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <https://www.gnu.org/licenses/>. - -set -e - -PROGRAM="$(basename ${0})" -DEVICES="$(grep DRIVER=i40e /sys/class/net/*/device/uevent | awk -F/ '{ print $5 }' | sort -V)" - -if [ -z "${DEVICES}" ] -then - echo "'${PROGRAM}': no network devices available with i40e driver" -fi - -for DEVICE in ${DEVICES} -do - echo -n "'${DEVICE}': disabling FW LLDP..." - ethtool --set-priv-flags ${DEVICE} disable-fw-lldp on - echo " done." -done |