From a1a5dadef65a5cd6f14539caff070629cbfbcb28 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 2 Nov 2015 15:36:11 -0500 Subject: [PATCH] remove uneeded module --- 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 221ed8bf85..ab1a158492 100644 --- a/lib/ansible/module_utils/facts.py +++ b/lib/ansible/module_utils/facts.py @@ -575,7 +575,7 @@ class Facts(object): self.facts['service_mgr'] = 'svcs' elif self.facts['system'] == 'Linux': - if self._check_systemd(module): + if self._check_systemd(): self.facts['service_mgr'] = 'systemd' elif module.get_bin_path('initctl') and os.path.exists("/etc/init/"): self.facts['service_mgr'] = 'upstart'