From: Daniel Golle Date: Mon, 30 Aug 2021 19:03:23 +0000 (+0100) Subject: uxc: move mountpoint of persistent config to /var/run/uxc X-Git-Url: http://git.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=df251c2cbad9a14dc632a7f44ff6baee3a72b043 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 --- 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;