mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Improving readability.
This commit is contained in:
parent
aedd750251
commit
2d4656621b
@ -176,12 +176,12 @@ def create_script(git_url, git_branch, on_boot):
|
||||
|
||||
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:
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user