mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Take into account __env__
and saltenv
being passed from state files.
This commit is contained in:
parent
6e76123a0f
commit
f19ad9bd9d
@ -1275,9 +1275,11 @@ class State(object):
|
||||
# format_call
|
||||
env = cdata['kwargs']['env']
|
||||
elif '__env__' in data:
|
||||
# The user is passing an alternative environement using the
|
||||
# proper keyword argument
|
||||
# The user is passing an alternative environment using __env__
|
||||
# which is also not the appropriate choice, still, handle it
|
||||
env = data['__env__']
|
||||
elif 'saltenv' in data:
|
||||
env = data['saltenv']
|
||||
else:
|
||||
# Let's use the default environment
|
||||
env = 'base'
|
||||
|
Loading…
Reference in New Issue
Block a user