allow random command's output to go through

by default we call 'pollinate -q' which is nice and quiet.
if the user wants to be noisy, let them.
This commit is contained in:
Scott Moser 2014-03-03 16:33:11 -05:00
parent 0f9df1ebba
commit 4d6d5abd9e

View File

@ -58,7 +58,7 @@ def handle_random_seed_command(command, required, env=None):
else:
LOG.debug("command '%s' not found for seed_command", cmd)
return
util.subp(command, env=env)
util.subp(command, env=env, capture=False)
def handle(name, cfg, cloud, log, _args):