diff options
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): |