Add verification of env back into salt-call

This commit is contained in:
Dan Colish 2012-03-03 18:21:50 -08:00
parent bb1a005ece
commit 109985d5a3

View File

@ -674,6 +674,11 @@ class SaltCall(object):
opts['fun'] = ''
opts['arg'] = []
salt.verify_env([opts['pki_dir'],
opts['cachedir'],
os.path.dirname(opts['log_file']),
])
return opts
def run(self):