Skip to content

Commit

Permalink
Allow the __utils__ dunder in Grains modules
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceaulinic authored and max-arnold committed Dec 22, 2019
1 parent a419182 commit 451287e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion salt/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ def grain_funcs(opts, proxy=None):
__opts__ = salt.config.minion_config('/etc/salt/minion')
grainfuncs = salt.loader.grain_funcs(__opts__)
'''
return LazyLoader(
ret = LazyLoader(
_module_dirs(
opts,
'grains',
Expand All @@ -684,6 +684,8 @@ def grain_funcs(opts, proxy=None):
opts,
tag='grains',
)
ret.pack['__utils__'] = utils(opts, proxy=proxy)
return ret


def _load_cached_grains(opts, cfn):
Expand Down

0 comments on commit 451287e

Please sign in to comment.