Remove halt on error from all inheritors of realm

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-03-17 14:26:06 -07:00
parent 7bede86c9e
commit 519cd785cb
4 changed files with 11 additions and 23 deletions

View File

@@ -31,7 +31,6 @@ class CreateQVlan(Realm):
gateway=None,
port_list=[],
ip_list=[],
halt_on_error=False,
exit_on_error=False,
debug=False):
super().__init__(host, port)
@@ -41,7 +40,6 @@ class CreateQVlan(Realm):
self.debug = debug
self.port_list = port_list
self.ip_list = ip_list
self.halt_on_error = halt_on_error
self.exit_on_error = exit_on_error
self.qvlan_profile = self.new_qvlan_profile()