diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-12-19 17:02:54 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-12-19 17:02:54 -0500 |
commit | 4ee421211816b9f40e09585137b42a8fcec42218 (patch) | |
tree | d5efa8c2ff18787639f3910e412fcab1d34618cb /cloud-init.py | |
parent | 02c2e024a3ae57879faee82218fde7db19831efc (diff) | |
parent | 0bc89a7290453f4a496358e90d807c3616518273 (diff) | |
download | vyos-cloud-init-4ee421211816b9f40e09585137b42a8fcec42218.tar.gz vyos-cloud-init-4ee421211816b9f40e09585137b42a8fcec42218.zip |
make stdin read from /dev/null for all cloud-init programs (LP: #903993)
the cloud-init programs are never intended to run interactively.
Some programs were being run via subprocess, and would notice that their
input was attached to a terminal (/dev/console). As a result, they
they would try to prompt the user for input (apt-add-repository)
This change simply re-opens standard input as /dev/null so any
subprocesses will not end up blocking on input.
LP: #903993
Diffstat (limited to 'cloud-init.py')
-rwxr-xr-x | cloud-init.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cloud-init.py b/cloud-init.py index c38512fe..bc673265 100755 --- a/cloud-init.py +++ b/cloud-init.py @@ -34,6 +34,8 @@ def warn(wstr): sys.stderr.write("WARN:%s" % wstr) def main(): + util.close_stdin() + cmds = ( "start", "start-local" ) deps = { "start" : ( ds.DEP_FILESYSTEM, ds.DEP_NETWORK ), "start-local" : ( ds.DEP_FILESYSTEM, ) } |