We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fdbe5fc + 8b73e6d commit ec6c2ceCopy full SHA for ec6c2ce
bootstrap.py
@@ -517,7 +517,7 @@ def install_foreman_ssh_key():
517
os.mkdir(foreman_ssh_dir, 0700)
518
os.chown(foreman_ssh_dir, userpw.pw_uid, userpw.pw_gid)
519
try:
520
- foreman_ssh_key = urllib2.urlopen(("https://%s:9090/ssh/pubkey" % options.foreman_fqdn).read(), timeout=options.timeout)
+ foreman_ssh_key = urllib2.urlopen(("https://%s:9090/ssh/pubkey" % options.foreman_fqdn), timeout=options.timeout).read()
521
except urllib2.HTTPError, e:
522
print_generic("The server was unable to fulfill the request. Error: %s - %s" % (e.code, e.reason))
523
print_generic("Please ensure the Remote Execution feature is configured properly")
0 commit comments