From df251c2cbad9a14dc632a7f44ff6baee3a72b043 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Mon, 30 Aug 2021 20:03:23 +0100 Subject: [PATCH] uxc: move mountpoint of persistent config to /var/run/uxc Using /var/state/uxc turns out to be not the smartest thing to do, use /var/run/uxc instead. Signed-off-by: Daniel Golle --- uxc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uxc.c b/uxc.c index 3af4fa9..50262a6 100644 --- a/uxc.c +++ b/uxc.c @@ -38,7 +38,7 @@ #define UXC_VERSION "0.2" #define OCI_VERSION_STRING "1.0.2" #define UXC_ETC_CONFDIR "/etc/uxc" -#define UXC_VOL_CONFDIR "/var/state/uxc" +#define UXC_VOL_CONFDIR "/var/run/uxc" static bool verbose = false; static char *confdir = UXC_ETC_CONFDIR; -- 2.30.2