Merge pull request #42327 from mirceaulinic/patch-10

Default skip_verify to False
This commit is contained in:
Nicole Thomas 2017-07-18 12:04:36 -06:00 committed by GitHub
commit e72616c5f1

View File

@ -109,7 +109,7 @@ def managed(name,
template_mode='755', template_mode='755',
saltenv=None, saltenv=None,
template_engine='jinja', template_engine='jinja',
skip_verify=True, skip_verify=False,
defaults=None, defaults=None,
test=False, test=False,
commit=True, commit=True,
@ -194,10 +194,12 @@ def managed(name,
- :mod:`py<salt.renderers.py>` - :mod:`py<salt.renderers.py>`
- :mod:`wempy<salt.renderers.wempy>` - :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, If ``True``, hash verification of remote file sources (``http://``, ``https://``, ``ftp://``) will be skipped,
and the ``source_hash`` argument will be ignored. and the ``source_hash`` argument will be ignored.
.. versionchanged:: 2017.7.1
test: False test: False
Dry run? If set to ``True``, will apply the config, discard and return the changes. Default: ``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). (will commit the changes on the device).