mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-18 23:43:48 +02:00
Dynamips uuid hypervisor command is no longer supported.
This commit is contained in:
parent
c077f3b990
commit
93e2d4096d
@ -55,7 +55,6 @@ class DynamipsHypervisor:
|
|||||||
self._working_dir = working_dir
|
self._working_dir = working_dir
|
||||||
self._version = "N/A"
|
self._version = "N/A"
|
||||||
self._timeout = timeout
|
self._timeout = timeout
|
||||||
self._uuid = None
|
|
||||||
self._reader = None
|
self._reader = None
|
||||||
self._writer = None
|
self._writer = None
|
||||||
self._io_lock = asyncio.Lock()
|
self._io_lock = asyncio.Lock()
|
||||||
@ -99,8 +98,6 @@ class DynamipsHypervisor:
|
|||||||
except IndexError:
|
except IndexError:
|
||||||
self._version = "Unknown"
|
self._version = "Unknown"
|
||||||
|
|
||||||
self._uuid = yield from self.send("hypervisor uuid")
|
|
||||||
|
|
||||||
# this forces to send the working dir to Dynamips
|
# this forces to send the working dir to Dynamips
|
||||||
yield from self.set_working_dir(self._working_dir)
|
yield from self.set_working_dir(self._working_dir)
|
||||||
|
|
||||||
@ -174,16 +171,6 @@ class DynamipsHypervisor:
|
|||||||
|
|
||||||
return self._working_dir
|
return self._working_dir
|
||||||
|
|
||||||
@property
|
|
||||||
def uuid(self):
|
|
||||||
"""
|
|
||||||
Returns this hypervisor UUID.
|
|
||||||
|
|
||||||
:Returns: uuid string
|
|
||||||
"""
|
|
||||||
|
|
||||||
return self._uuid
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def devices(self):
|
def devices(self):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user