minor refactoring to vnode.py
This commit is contained in:
parent
78537d8e95
commit
59f22b12cf
1 changed files with 4 additions and 4 deletions
|
@ -161,6 +161,7 @@ class SimpleLxcNode(PyCoreNode):
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
# TODO: should change how this exception is just swallowed up
|
||||||
def mount(self, source, target):
|
def mount(self, source, target):
|
||||||
"""
|
"""
|
||||||
Create and mount a directory.
|
Create and mount a directory.
|
||||||
|
@ -474,8 +475,7 @@ class LxcNode(SimpleLxcNode):
|
||||||
Provides lcx node functionality for core nodes.
|
Provides lcx node functionality for core nodes.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, session, objid=None, name=None,
|
def __init__(self, session, objid=None, name=None, nodedir=None, bootsh="boot.sh", start=True):
|
||||||
nodedir=None, bootsh="boot.sh", start=True):
|
|
||||||
"""
|
"""
|
||||||
Create a LxcNode instance.
|
Create a LxcNode instance.
|
||||||
|
|
||||||
|
@ -486,8 +486,7 @@ class LxcNode(SimpleLxcNode):
|
||||||
:param bootsh: boot shell
|
:param bootsh: boot shell
|
||||||
:param bool start: start flag
|
:param bool start: start flag
|
||||||
"""
|
"""
|
||||||
super(LxcNode, self).__init__(session=session, objid=objid,
|
super(LxcNode, self).__init__(session=session, objid=objid, name=name, nodedir=nodedir, start=start)
|
||||||
name=name, nodedir=nodedir, start=start)
|
|
||||||
self.bootsh = bootsh
|
self.bootsh = bootsh
|
||||||
if start:
|
if start:
|
||||||
self.startup()
|
self.startup()
|
||||||
|
@ -544,6 +543,7 @@ class LxcNode(SimpleLxcNode):
|
||||||
self.rmnodedir()
|
self.rmnodedir()
|
||||||
self.lock.release()
|
self.lock.release()
|
||||||
|
|
||||||
|
# TODO: should change how this exception is just swallowed up
|
||||||
def privatedir(self, path):
|
def privatedir(self, path):
|
||||||
"""
|
"""
|
||||||
Create a private directory.
|
Create a private directory.
|
||||||
|
|
Loading…
Add table
Reference in a new issue