mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Default skip_verify to False
This has been partially tackled in https://github.com/saltstack/salt/pull/41528, but exactly the main entry point was missed.
This commit is contained in:
parent
81695a9f3c
commit
c83e6fc696
1 changed files with 4 additions and 2 deletions
|
@ -109,7 +109,7 @@ def managed(name,
|
|||
template_mode='755',
|
||||
saltenv=None,
|
||||
template_engine='jinja',
|
||||
skip_verify=True,
|
||||
skip_verify=False,
|
||||
defaults=None,
|
||||
test=False,
|
||||
commit=True,
|
||||
|
@ -194,9 +194,11 @@ def managed(name,
|
|||
- :mod:`py<salt.renderers.py>`
|
||||
- :mod:`wempy<salt.renderers.wempy>`
|
||||
|
||||
skip_verify: True
|
||||
skip_verify: False
|
||||
If ``True``, hash verification of remote file sources (``http://``, ``https://``, ``ftp://``) will be skipped,
|
||||
and the ``source_hash`` argument will be ignored.
|
||||
|
||||
.. versionchanged:: 2017.7.1
|
||||
|
||||
test: False
|
||||
Dry run? If set to ``True``, will apply the config, discard and return the changes. Default: ``False``
|
||||
|
|
Loading…
Add table
Reference in a new issue