diff options
| author | Daniel Golle | 2021-08-30 19:03:23 +0000 |
|---|---|---|
| committer | Daniel Golle | 2021-08-30 19:24:13 +0000 |
| commit | df251c2cbad9a14dc632a7f44ff6baee3a72b043 (patch) | |
| tree | dffaa7a25668c3b565c79396e7837c32f198fd5a | |
| parent | 167dc249b0a55fdb973afbd797059a3880bb7aea (diff) | |
| download | procd-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |