Remove extraneous get_bin_path call (#83675)

ip_path is already calculated before calling get_interfaces_info

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
Co-authored-by: Sloane Hertel <19572925+s-hertel@users.noreply.github.com>
Co-authored-by: Brian Coca <bcoca@users.noreply.github.com>
pull/83707/head
Abhijeet Kasurde 4 months ago committed by GitHub
parent 5ae8b5b3a6
commit 91f680a749
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,3 @@
---
bugfixes:
- linux - remove extraneous get_bin_path API call.

@ -295,8 +295,6 @@ class LinuxNetwork(Network):
if not address == '::1': if not address == '::1':
ips['all_ipv6_addresses'].append(address) ips['all_ipv6_addresses'].append(address)
ip_path = self.module.get_bin_path("ip")
args = [ip_path, 'addr', 'show', 'primary', 'dev', device] args = [ip_path, 'addr', 'show', 'primary', 'dev', device]
rc, primary_data, stderr = self.module.run_command(args, errors='surrogate_then_replace') rc, primary_data, stderr = self.module.run_command(args, errors='surrogate_then_replace')
if rc == 0: if rc == 0:

Loading…
Cancel
Save