From 4d6d5abd9ec2600da387942e3f59bba8d4a7e9ed Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Mon, 3 Mar 2014 16:33:11 -0500 Subject: [PATCH] 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. --- cloudinit/config/cc_seed_random.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/config/cc_seed_random.py b/cloudinit/config/cc_seed_random.py index 56c19ad5..49a6b3e8 100644 --- a/cloudinit/config/cc_seed_random.py +++ b/cloudinit/config/cc_seed_random.py @@ -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):