Skip to content

Commit

Permalink
Merge pull request #55336 from max-arnold/utils-in-grains
Browse files Browse the repository at this point in the history
[master] Allow the __utils__ dunder in Grains modules (port #49128)
  • Loading branch information
dwoz authored Jan 2, 2020
2 parents a657ddc + 451287e commit da7b776
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 da7b776

Please sign in to comment.