summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/Client/Redhat.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/Client/Redhat.py b/src/lib/Client/Redhat.py
index 6f03f170b..ee952c0fa 100644
--- a/src/lib/Client/Redhat.py
+++ b/src/lib/Client/Redhat.py
@@ -131,3 +131,12 @@ class Redhat(Toolset):
else:
self.CondPrint('verbose', "Need to remove services: %s" % self.extra_services)
+ def Inventory(self):
+ '''Do standard inventory plus debian extra service check'''
+ Toolset.Inventory(self)
+ allsrv = [line.split()[0] for line in popen("chkconfig --list|grep :on").readlines()]
+ self.CondPrint('debug', "Found active services: %s" % allsrv)
+ csrv = self.cfg.findall(".//Service")
+ [allsrv.remove(svc.get('name')) for svc in csrv if
+ svc.get('status') == 'on' and svc.get('name') in allsrv]
+ self.extra_services = allsrv