removed bootsh from CoreNode types as it was not being used
This commit is contained in:
parent
56fbc0e3c5
commit
fe09b37819
3 changed files with 2 additions and 11 deletions
|
@ -74,7 +74,6 @@ class LxcNode(CoreNode):
|
|||
_id: int = None,
|
||||
name: str = None,
|
||||
nodedir: str = None,
|
||||
bootsh: str = "boot.sh",
|
||||
start: bool = True,
|
||||
server: DistributedServer = None,
|
||||
image: str = None,
|
||||
|
@ -86,7 +85,6 @@ class LxcNode(CoreNode):
|
|||
:param _id: object id
|
||||
:param name: object name
|
||||
:param nodedir: node directory
|
||||
:param bootsh: boot shell to use
|
||||
:param start: start flag
|
||||
:param server: remote server node
|
||||
will run on, default is None for localhost
|
||||
|
@ -95,7 +93,7 @@ class LxcNode(CoreNode):
|
|||
if image is None:
|
||||
image = "ubuntu"
|
||||
self.image = image
|
||||
super().__init__(session, _id, name, nodedir, bootsh, start, server)
|
||||
super().__init__(session, _id, name, nodedir, start, server)
|
||||
|
||||
def alive(self) -> bool:
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue