diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2005-04-11 18:23:27 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2005-04-11 18:23:27 +0000 |
commit | 09baf3c398b5c78c05c6286f31be71a3932d7897 (patch) | |
tree | 1654006ae33917720cc67dbed5aaef823cea0096 /src | |
parent | 5db6aa527a79c8a76a7278acb2f48c25a695d212 (diff) | |
download | bcfg2-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.py | 2 |
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") |