mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Update __init__.py
pass _pillar_rend=True to compile_template when processing top.sls as well
This commit is contained in:
parent
cd34b9b6c4
commit
6efcac09ad
1 changed files with 6 additions and 3 deletions
|
@ -214,7 +214,8 @@ class Pillar(object):
|
|||
),
|
||||
self.rend,
|
||||
self.opts['renderer'],
|
||||
self.opts['environment']
|
||||
self.opts['environment'],
|
||||
_pillar_rend=True
|
||||
)
|
||||
]
|
||||
else:
|
||||
|
@ -227,7 +228,8 @@ class Pillar(object):
|
|||
),
|
||||
self.rend,
|
||||
self.opts['renderer'],
|
||||
saltenv=saltenv
|
||||
saltenv=saltenv,
|
||||
_pillar_rend=True
|
||||
)
|
||||
)
|
||||
except Exception as exc:
|
||||
|
@ -262,7 +264,8 @@ class Pillar(object):
|
|||
).get('dest', False),
|
||||
self.rend,
|
||||
self.opts['renderer'],
|
||||
saltenv=saltenv
|
||||
saltenv=saltenv,
|
||||
_pillar_rend=True
|
||||
)
|
||||
)
|
||||
except Exception as exc:
|
||||
|
|
Loading…
Add table
Reference in a new issue