summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2014-03-03 16:33:11 -0500
committerScott Moser <smoser@ubuntu.com>2014-03-03 16:33:11 -0500
commitd7b79b1c5703a9fc4d533d15efa5fdb1f4f8352b (patch)
treed613a84bb7e9d17636fc9e657ffa32f54f8cb3eb
parent778d2015ec49170ff4525b63903d7a656ad44b2e (diff)
downloadvyos-cloud-init-d7b79b1c5703a9fc4d533d15efa5fdb1f4f8352b.tar.gz
vyos-cloud-init-d7b79b1c5703a9fc4d533d15efa5fdb1f4f8352b.zip
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.
-rw-r--r--cloudinit/config/cc_seed_random.py2
1 files changed, 1 insertions, 1 deletions
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):