mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #27172 from rallytime/bp-27150
Back-port #27150 to 2015.5
This commit is contained in:
commit
7a34c7742d
1 changed files with 2 additions and 1 deletions
|
@ -25,6 +25,7 @@ except Exception:
|
|||
|
||||
# Import salt libs
|
||||
import salt.utils
|
||||
import salt.utils.dictupdate
|
||||
import salt.utils.network
|
||||
import salt.syspaths
|
||||
import salt.utils.validate.path
|
||||
|
@ -908,7 +909,7 @@ def include_config(include, orig_path, verbose):
|
|||
|
||||
for fn_ in sorted(glob.glob(path)):
|
||||
log.debug('Including configuration from {0!r}'.format(fn_))
|
||||
configuration.update(_read_conf_file(fn_))
|
||||
salt.utils.dictupdate.update(configuration, _read_conf_file(fn_))
|
||||
return configuration
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue