1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-02-23 05:22:04 +00:00

Expose the allocate_aux setting

This commit is contained in:
Julien Duponchelle 2016-03-01 15:01:45 +01:00
parent dab1b26569
commit 392fa187c2
No known key found for this signature in database
GPG Key ID: F1E2485547D4595D

View File

@ -63,6 +63,7 @@ class BaseVM:
self._closed = False
self._vm_status = "stopped"
self._command_line = ""
self._allocate_aux = allocate_aux
if self._console is not None:
if console_type == "vnc":
@ -270,6 +271,13 @@ class BaseVM:
self._closed = True
return True
@property
def allocate_aux(self):
"""
:returns: Boolean allocate or not an aux console
"""
return self._allocate_aux
@property
def aux(self):
"""