aboutsummaryrefslogtreecommitdiffstats
path: root/patches/network-checker/0001-Fixed-typo-in-net-check.patch
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-04-26 18:34:40 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-04-26 17:11:15 +0000
commit22f69e766268503ce734a939e95d6b62d2d74d76 (patch)
tree2b2d7b05aa5e1843da72ae6eb190ea48f90beb87 /patches/network-checker/0001-Fixed-typo-in-net-check.patch
parentf4296ca4cf69c632b53ce1dacf9333b290b8a014 (diff)
Cleanup: Remove patches that landed upstream
Change-Id: Ib2f96ec70d0b589741484f7e3f3b537a269785fe Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com> (cherry picked from commit 7a118fca890bd757485bcd1d59f334e5f1e327d3)
Diffstat (limited to 'patches/network-checker/0001-Fixed-typo-in-net-check.patch')
-rw-r--r--patches/network-checker/0001-Fixed-typo-in-net-check.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/patches/network-checker/0001-Fixed-typo-in-net-check.patch b/patches/network-checker/0001-Fixed-typo-in-net-check.patch
deleted file mode 100644
index 1546dde5..00000000
--- a/patches/network-checker/0001-Fixed-typo-in-net-check.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-: Copyright (c) 2017 Enea AB and others.
-:
-: All rights reserved. This program and the accompanying materials
-: are made available under the terms of the Apache License, Version 2.0
-: which accompanies this distribution, and is available at
-: http://www.apache.org/licenses/LICENSE-2.0
-::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-From: chko <hkominos>
-Date: Tue, 21 Mar 2017 14:51:22 +0100
-Subject: [PATCH] Fixed typo in net-check Closes-Bug:#1674724
-
-Change-Id: Ibf35e5ffb1411b998f9ad250b7744c447e16fa71
-Signed-off-by: Charalampos Kominos <hkominos@gmail.com>
-(cherry picked from commit e5debec9fe2d8f1a99521594ca3bb10de3bb6d13)
----
- network_checker/net_check/api.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/network_checker/net_check/api.py b/network_checker/net_check/api.py
-index defdde0..a4155db 100755
---- a/network_checker/net_check/api.py
-+++ b/network_checker/net_check/api.py
-@@ -199,7 +199,7 @@ class Actor(object):
- if state.lower() == 'up':
- self.logger.debug('Inteface %s is up', check_iface)
- return True
-- elif state.lower == 'unknown':
-+ elif state.lower() == 'unknown':
- self.logger.debug('Inteface %s state is unknown, using ethtool',
- check_iface)
- ethtool_output = self._execute(['ethtool', check_iface])