Add missing param.
This commit is contained in:
parent
75e85379f6
commit
c293a9b2ce
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ class Install(cdist.config.Config):
|
||||||
In install mode, we only care about install objects.
|
In install mode, we only care about install objects.
|
||||||
"""
|
"""
|
||||||
for cdist_object in cdist.core.CdistObject.list_objects(
|
for cdist_object in cdist.core.CdistObject.list_objects(
|
||||||
self.local.object_path, self.local.type_path):
|
self.local.object_path, self.local.type_path,
|
||||||
|
self.local.object_marker_name):
|
||||||
if cdist_object.cdist_type.is_install:
|
if cdist_object.cdist_type.is_install:
|
||||||
yield cdist_object
|
yield cdist_object
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue