mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge branch '2015.8' into '2016.3'
Conflicts: - salt/minion.py - salt/output/highstate.py
This commit is contained in:
commit
1c3a9a3ee9
2 changed files with 4 additions and 3 deletions
|
@ -1154,6 +1154,7 @@ class Minion(MinionBase):
|
|||
self._send_req_sync(load, timeout)
|
||||
except salt.exceptions.SaltReqTimeoutError:
|
||||
log.info('fire_master failed: master could not be contacted. Request timed out.')
|
||||
return False
|
||||
except Exception:
|
||||
log.info('fire_master failed: {0}'.format(traceback.format_exc()))
|
||||
return False
|
||||
|
|
|
@ -2069,9 +2069,9 @@ def file_dict(*packages):
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
salt '*' pkg.file_list httpd
|
||||
salt '*' pkg.file_list httpd postfix
|
||||
salt '*' pkg.file_list
|
||||
salt '*' pkg.file_dict httpd
|
||||
salt '*' pkg.file_dict httpd postfix
|
||||
salt '*' pkg.file_dict
|
||||
'''
|
||||
return __salt__['lowpkg.file_dict'](*packages)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue