mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
parent
c78d833540
commit
6351a94d08
1 changed files with 2 additions and 1 deletions
|
@ -31,6 +31,7 @@ from salt.ext.six.moves.urllib.parse import urlparse
|
|||
|
||||
# Import salt libs
|
||||
import salt.utils
|
||||
import salt.utils.dictupdate
|
||||
import salt.utils.network
|
||||
import salt.syspaths
|
||||
import salt.utils.validate.path
|
||||
|
@ -1480,7 +1481,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