Adding path to console connections

This commit is contained in:
root
2023-10-18 12:21:48 +02:00
parent bf82996753
commit 9e817169ca
2 changed files with 3 additions and 3 deletions

View File

@@ -20,6 +20,6 @@ def socket_connect(vm_name):
vm_port = get_vnc_port(vm_name)
os.system('websockify -D --web=/usr/share/novnc/ 6080 localhost:'+vm_port)
def pyxterm_connect(lxc_name):
def pyxterm_connect(path,lxc_name):
kill_consoles()
os.system('python3 pyxterm.py --command \'lxc-attach\' --cmd-args \''+lxc_name+'\' &')
os.system('python3 '+path+'/pyxterm.py --command \'lxc-attach\' --cmd-args \''+lxc_name+'\' &')