mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
[2017.7.8] Use correct path for is_true function
`data.py` does not exist in the salt/utils/ dir in the 2017.7 branch. We need to use the old path. This occurred from a backport and I missed the path change.
This commit is contained in:
parent
92369f06f6
commit
f3e153443a
@ -836,7 +836,7 @@ def install(name=None,
|
||||
opts += 'x'
|
||||
if salt.utils.is_true(pcre):
|
||||
opts += 'X'
|
||||
if salt.utils.data.is_true(batch):
|
||||
if salt.utils.is_true(batch):
|
||||
env = {
|
||||
"BATCH": "true",
|
||||
"ASSUME_ALWAYS_YES": "YES"
|
||||
|
Loading…
Reference in New Issue
Block a user