Adding path to console connections

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

2
app.py
View File

@ -234,7 +234,7 @@ def ter_connect():
def consolelxc():
lxc_name = request.form['lxc_name']
try:
pyxterm_connect(lxc_name)
pyxterm_connect(path,lxc_name)
time.sleep(2)
return render_template('terminal.html')
except Exception as e:

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+'\' &')