refactor(map): use config.get instead of pillar.get

* https://github.com/saltstack-formulas/template-formula/pull/95
This commit is contained in:
Imran Iqbal 2019-12-06 16:17:35 +00:00
parent 1aa6f50091
commit ca9bbd15a1
No known key found for this signature in database
GPG key ID: 6D8629439D2B7819

View file

@ -13,7 +13,7 @@
merge = salt['grains.filter_by']( merge = salt['grains.filter_by'](
osmap, osmap,
grain='os', grain='os',
merge = salt['pillar.get']('packages', {}), merge = salt['config.get']('packages', {}),
), ),
), ),
base='packages') base='packages')