Fallback to base per #5092

This commit is contained in:
Thomas S Hatch 2013-05-17 11:52:40 -06:00
parent 43a3e7bf25
commit 5200ed71fd

View File

@ -128,7 +128,7 @@ def set_file(path, **kwargs):
salt '*' debconf.set_file salt://pathto/pkg.selections
'''
path = __salt__['cp.cache_file'](path, kwargs.get('__env__'))
path = __salt__['cp.cache_file'](path, kwargs.get('__env__', 'base'))
if path:
_set_file(path)
return True