mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-16 06:18:19 +00:00
Bump version to 1.0-alpha2.
This commit is contained in:
@ -276,8 +276,8 @@ class Hypervisor(DynamipsHypervisor):
|
||||
|
||||
command = [self._path]
|
||||
command.extend(["-N1"]) # use instance IDs for filenames
|
||||
if self._host != '0.0.0.0':
|
||||
command.extend(['-H', self._host + ':' + str(self._port)])
|
||||
if self._host != "0.0.0.0" and self._host != "::":
|
||||
command.extend(["-H", self._host + ":" + str(self._port)])
|
||||
else:
|
||||
command.extend(['-H', str(self._port)])
|
||||
command.extend(["-H", str(self._port)])
|
||||
return command
|
||||
|
Reference in New Issue
Block a user