summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorTakayoshi Kimura <takayoshi@gmail.com>2015-11-16 15:19:58 +0900
committerTakayoshi Kimura <takayoshi@gmail.com>2015-11-16 15:19:58 +0900
commitd8768abb56cddf573573798cc825bcae935731e2 (patch)
tree112540a658dca059f2818a9a292a0df961f7f391 /utils
parentd4d6fc2b9b8cf0e3dc6a28a9e9b0c1505cc1d83e (diff)
downloadopenshift-d8768abb56cddf573573798cc825bcae935731e2.tar.gz
openshift-d8768abb56cddf573573798cc825bcae935731e2.tar.bz2
openshift-d8768abb56cddf573573798cc825bcae935731e2.tar.xz
openshift-d8768abb56cddf573573798cc825bcae935731e2.zip
Fix invalid sudo command test
Diffstat (limited to 'utils')
-rw-r--r--utils/src/ooinstall/openshift_ansible.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/src/ooinstall/openshift_ansible.py b/utils/src/ooinstall/openshift_ansible.py
index fdd0c1168..372f27bda 100644
--- a/utils/src/ooinstall/openshift_ansible.py
+++ b/utils/src/ooinstall/openshift_ansible.py
@@ -82,7 +82,7 @@ def write_host(host, inventory, scheduleable=True):
if installer_host in [host.connect_to, host.hostname, host.public_hostname]:
facts += ' ansible_connection=local'
if os.geteuid() != 0:
- no_pwd_sudo = subprocess.call(['sudo', '-n', 'echo openshift'])
+ no_pwd_sudo = subprocess.call(['sudo', '-n', 'echo', 'openshift'])
if no_pwd_sudo == 1:
print 'The atomic-openshift-installer requires sudo access without a password.'
sys.exit(1)