summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-04-11 18:23:27 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-04-11 18:23:27 +0000
commit09baf3c398b5c78c05c6286f31be71a3932d7897 (patch)
tree1654006ae33917720cc67dbed5aaef823cea0096 /src
parent5db6aa527a79c8a76a7278acb2f48c25a695d212 (diff)
downloadbcfg2-09baf3c398b5c78c05c6286f31be71a3932d7897.tar.gz
bcfg2-09baf3c398b5c78c05c6286f31be71a3932d7897.tar.bz2
bcfg2-09baf3c398b5c78c05c6286f31be71a3932d7897.zip
fix inventory call
(Logical change 1.222) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@930 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Client/Debian.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/Debian.py b/src/lib/Client/Debian.py
index e7d6f334e..837da85a8 100644
--- a/src/lib/Client/Debian.py
+++ b/src/lib/Client/Debian.py
@@ -100,7 +100,7 @@ class Debian(Toolset):
def Inventory(self):
'''Do standard inventory plus debian extra service check'''
- self.Inventory_Entries()
+ Toolset.Inventory(self)
allsrv = []
[allsrv.append(fname[14:]) for fname in glob("/etc/rc[12345].d/S*") if fname[14:] not in allsrv]
csrv = self.cfg.findall(".//Service")