diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-03-03 16:33:11 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-03-03 16:33:11 -0500 |
commit | d7b79b1c5703a9fc4d533d15efa5fdb1f4f8352b (patch) | |
tree | d613a84bb7e9d17636fc9e657ffa32f54f8cb3eb /cloudinit/config/cc_seed_random.py | |
parent | 778d2015ec49170ff4525b63903d7a656ad44b2e (diff) | |
download | vyos-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.
Diffstat (limited to 'cloudinit/config/cc_seed_random.py')
-rw-r--r-- | cloudinit/config/cc_seed_random.py | 2 |
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): |