mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Merge pull request #11288 from kstrauser/aixfixes
Don't panic if AIX's uname doesn't support -W
This commit is contained in:
@@ -2218,7 +2218,7 @@ class AIXNetwork(GenericBsdIfconfigNetwork, Network):
|
||||
rc, out, err = module.run_command([uname_path, '-W'])
|
||||
# don't bother with wpars it does not work
|
||||
# zero means not in wpar
|
||||
if out.split()[0] == '0':
|
||||
if not rc and out.split()[0] == '0':
|
||||
if current_if['macaddress'] == 'unknown' and re.match('^en', current_if['device']):
|
||||
entstat_path = module.get_bin_path('entstat')
|
||||
if entstat_path:
|
||||
|
||||
Reference in New Issue
Block a user