From d8fc13cff8cd033598ce72c362224a8ec731cc34 Mon Sep 17 00:00:00 2001 From: Ahurac Date: Sun, 21 Jan 2024 00:28:20 +0100 Subject: [PATCH] pathof : le chemin de base pour les sockets devient ~qemu/sockets au lieu de /run/qemush MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /run/qemu n'existe pas et doit être créé avec root --- qemu/bin/pathof | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/bin/pathof b/qemu/bin/pathof index d3bc759..ce042d3 100755 --- a/qemu/bin/pathof +++ b/qemu/bin/pathof @@ -6,7 +6,7 @@ # Choose the base dir to print according to argv[1] case "$1" in socket) - path=/run/qemush + path="${HOME}/sockets" ;; disk) path="${HOME}/disks"