Loading ccnode/ccnodehandlers.py +3 −3 Original line number Diff line number Diff line Loading @@ -242,13 +242,13 @@ class NodeHandler(RpcHandler): @pure def execute_command(self, command): ''' Excecutes the given command on the local hypervisor Executes the given command on the local hypervisor :param command: the command to excecute as it would be typed on a shell :param command: the command to execute as it would be typed on a shell prompt :type command: :class:`str` ''' result = self.hv_handle.local_excecute(command) result = self.hv_handle.local_execute(command) return result Loading ccnode/kvm.py +1 −1 Original line number Diff line number Diff line Loading @@ -92,7 +92,7 @@ class KvmHypervisor(LibvirtHypervisor): raise VMError('Virtual machine %s not found: ' % name) def local_excecute(self, command): def local_execute(self, command): ''' Excecutes the command given in command on the local host Returns a tuple with (stdout, stderr) from the process that has Loading Loading
ccnode/ccnodehandlers.py +3 −3 Original line number Diff line number Diff line Loading @@ -242,13 +242,13 @@ class NodeHandler(RpcHandler): @pure def execute_command(self, command): ''' Excecutes the given command on the local hypervisor Executes the given command on the local hypervisor :param command: the command to excecute as it would be typed on a shell :param command: the command to execute as it would be typed on a shell prompt :type command: :class:`str` ''' result = self.hv_handle.local_excecute(command) result = self.hv_handle.local_execute(command) return result Loading
ccnode/kvm.py +1 −1 Original line number Diff line number Diff line Loading @@ -92,7 +92,7 @@ class KvmHypervisor(LibvirtHypervisor): raise VMError('Virtual machine %s not found: ' % name) def local_excecute(self, command): def local_execute(self, command): ''' Excecutes the command given in command on the local host Returns a tuple with (stdout, stderr) from the process that has Loading