ctdb: use /run/ctdb instead of /var/run/ctdb

Whole upstream path assignment needs a review.
This commit is contained in:
Michael Tokarev 2022-12-02 11:45:01 +03:00 committed by su-fang
parent bb00bc77a7
commit 44b7a3fd1d
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ def configure(conf):
conf.env.CTDB_DATADIR = os.path.join(conf.env.EXEC_PREFIX, 'share/ctdb')
conf.env.CTDB_ETCDIR = os.path.join(conf.env.SYSCONFDIR, 'ctdb')
conf.env.CTDB_VARDIR = os.path.join(conf.env.LOCALSTATEDIR, 'lib/ctdb')
conf.env.CTDB_RUNDIR = os.path.join(conf.env.LOCALSTATEDIR, 'run/ctdb')
conf.env.CTDB_RUNDIR = '/run/ctdb'
conf.env.CTDB_HELPER_BINDIR = os.path.join(conf.env.LIBEXECDIR, 'ctdb')
if Options.options.ctdb_logdir: