small tweaks to cleanup lxd from commented out code

This commit is contained in:
Blake Harnden 2019-07-02 09:51:56 -07:00
parent e83b38d96a
commit 9e273c2d8f
2 changed files with 1 additions and 7 deletions

View file

@ -172,9 +172,7 @@ class LxcNode(CoreNode):
def startup(self):
"""
Start a new namespace node by invoking the vnoded process that
allocates a new namespace. Bring up the loopback device and set
the hostname.
Startup logic.
:return: nothing
"""
@ -209,7 +207,6 @@ class LxcNode(CoreNode):
:return: exit status for command
:rtype: int
"""
# return self.client.ns_cmd(args, wait)
return self.client.run_cmd(args, wait)
def cmd_output(self, args):
@ -220,7 +217,6 @@ class LxcNode(CoreNode):
:return: exit status and combined stdout and stderr
:rtype: tuple[int, str]
"""
# return self.client.ns_cmd_output(args)
return self.client.run_cmd_output(args)
def check_cmd(self, args):
@ -232,7 +228,6 @@ class LxcNode(CoreNode):
:rtype: str
:raises CoreCommandError: when a non-zero exit status occurs
"""
# status, output = self.client.ns_cmd_output(args)
status, output = self.client.run_cmd_output(args)
if status:
raise CoreCommandError(status, args, output)

View file

@ -14,7 +14,6 @@ if __name__ == "__main__":
try:
prefixes = IpPrefixes(ip4_prefix="10.83.0.0/16")
options = NodeOptions(image="ubuntu")
options.services = ["SSH"]
# create node one
node_one = session.add_node(_type=NodeTypes.LXC, node_options=options)