1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-12 11:28:55 +00:00

Improving readability.

This commit is contained in:
Kieron Bulloch 2014-06-24 23:34:50 -04:00 committed by Jerry Seutter
parent d6c5dffae6
commit 868935f5e8

View File

@ -176,12 +176,12 @@ def create_script(git_url, git_branch, on_boot):
script_template = Template(open('script_template', 'r').read()) script_template = Template(open('script_template', 'r').read())
p = dict(git_url=git_url, git_branch=git_branch, rc_local='') params = {'git_url': git_url, 'git_branch': git_branch, 'rc_local': ''}
if on_boot: if on_boot:
p['rc_local'] = "echo '/usr/local/bin/gns3-server' >> /etc/rc.local" params['rc_local'] = "echo '/usr/local/bin/gns3-server' >> /etc/rc.local"
return script_template.substitute(p) return script_template.substitute(params)
def create_image(username, password, tenant, region, server, def create_image(username, password, tenant, region, server,