From 6ea8a927a3119d76e11e52c8be1f1029eaf321b7 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 11 Jan 2024 19:05:48 +0100 Subject: [PATCH] Add missing instructions --- .../src/widgets/net/NetworkHookStatusWidget.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/virtweb_frontend/src/widgets/net/NetworkHookStatusWidget.tsx b/virtweb_frontend/src/widgets/net/NetworkHookStatusWidget.tsx index 20d1430..312fdf5 100644 --- a/virtweb_frontend/src/widgets/net/NetworkHookStatusWidget.tsx +++ b/virtweb_frontend/src/widgets/net/NetworkHookStatusWidget.tsx @@ -40,6 +40,8 @@ function NetworkHookStatusWidgetInner(p: { ); + const makeExecutable = `chmod +x ${p.status.path}`; + return ( The network hook has not been detected on this system. It must be @@ -57,6 +59,12 @@ function NetworkHookStatusWidgetInner(p: { {p.status.content}
+ Make sure that the created file is executable : +
+ + {makeExecutable} + +
You will need then to restart both libvirtd and VirtWeb.