Merge branch '2015.8' into '2016.3'

Conflicts:
  - salt/minion.py
  - salt/output/highstate.py
This commit is contained in:
rallytime 2016-10-07 09:39:48 -06:00
commit 1c3a9a3ee9
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -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)