mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-26 08:48:11 +00:00
Do not prevent the creation of a local server on a machine named gns3vm
Fix #920
This commit is contained in:
parent
41d7570b24
commit
39106ac36b
@ -62,8 +62,13 @@ class Controller:
|
|||||||
console_host = host
|
console_host = host
|
||||||
if host == "0.0.0.0":
|
if host == "0.0.0.0":
|
||||||
host = "127.0.0.1"
|
host = "127.0.0.1"
|
||||||
|
|
||||||
|
name = socket.gethostname()
|
||||||
|
if name == "gns3vm":
|
||||||
|
name = "Main server"
|
||||||
|
|
||||||
yield from self.add_compute(compute_id="local",
|
yield from self.add_compute(compute_id="local",
|
||||||
name=socket.gethostname(),
|
name=name,
|
||||||
protocol=server_config.get("protocol", "http"),
|
protocol=server_config.get("protocol", "http"),
|
||||||
host=host,
|
host=host,
|
||||||
console_host=console_host,
|
console_host=console_host,
|
||||||
|
Loading…
Reference in New Issue
Block a user