mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
Merge pull request #42327 from mirceaulinic/patch-10
Default skip_verify to False
This commit is contained in:
commit
e72616c5f1
@ -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,10 +194,12 @@ 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``
|
||||
(will commit the changes on the device).
|
||||
|
Loading…
Reference in New Issue
Block a user