From 4b495d7e43360fc5f45dc84dbd2f6034c4148d21 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 13 Jan 2017 14:03:22 -0500 Subject: [PATCH] fix issue when proc read returns None fixes #20225 --- lib/ansible/module_utils/facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/facts.py b/lib/ansible/module_utils/facts.py index 9ca8fed8506..3e7078f5953 100644 --- a/lib/ansible/module_utils/facts.py +++ b/lib/ansible/module_utils/facts.py @@ -336,7 +336,7 @@ class Facts(object): proc_1 = to_native(proc_1) proc_1 = proc_1.strip() - if proc_1 == 'init' or proc_1.endswith('sh'): + if proc_1 is not None and (proc_1 == 'init' or proc_1.endswith('sh')): # many systems return init, so this cannot be trusted, if it ends in 'sh' it probalby is a shell in a container proc_1 = None