Standardize what we mean by server

This commit is contained in:
Ian Gulliver
2016-05-18 00:15:25 +00:00
parent 043bfd4338
commit fc7a670a1f
2 changed files with 3 additions and 11 deletions

View File

@@ -4,7 +4,6 @@ import argparse
import os
import shutil
import subprocess
from urllib import parse
parser = argparse.ArgumentParser(description='iconograph autoimage')
@@ -93,8 +92,6 @@ def main():
os.path.join(FLAGS.chroot_path, client_key_path))
os.chmod(os.path.join(FLAGS.chroot_path, client_key_path), 0o400)
parsed = parse.urlparse(FLAGS.server)
init = os.path.join(FLAGS.chroot_path, 'etc', 'init', 'certclient.%s.conf' % FLAGS.tag)
with open(init, 'w') as fh:
fh.write("""
@@ -116,7 +113,7 @@ script
fi
chvt 9
/icon/iconograph/client/wait_for_service.py --host=%(host)s --service=%(service)s
/icon/iconograph/client/wait_for_service.py --host=%(server)s --service=https
chvt 9
if test ! -s "${CERT}"; then
@@ -132,11 +129,9 @@ script
echo "=================="
end script
""" % {
'host': parsed.hostname,
'service': parsed.port or parsed.scheme,
'server': FLAGS.server,
'subject': FLAGS.subject,
'tag': FLAGS.tag,
'server': FLAGS.server,
})