summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2021-08-30 20:03:23 +0100
committerDaniel Golle <daniel@makrotopia.org>2021-08-30 20:24:13 +0100
commitdf251c2cbad9a14dc632a7f44ff6baee3a72b043 (patch)
treedffaa7a25668c3b565c79396e7837c32f198fd5a
parent167dc249b0a55fdb973afbd797059a3880bb7aea (diff)
downloadprocd-df251c2cbad9a14dc632a7f44ff6baee3a72b043.tar.gz
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 <daniel@makrotopia.org>
-rw-r--r--uxc.c2
1 files changed, 1 insertions, 1 deletions
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;