mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
Use /run/inspircd as the runtime directory on Linux.
Unfortunately some tooling like AppArmor is not smart enough to follow the symlink from /var/run to /run so we need to explicitly set the path. This fixes running InspIRCd without --nopid on some systems. See also: inspircd/inspircd-packages#402ef9a411.
This commit is contained in:
parent
77d5b214fb
commit
fde23f2801
2
configure
vendored
2
configure
vendored
@ -213,7 +213,7 @@ if (defined $opt_portable) {
|
||||
$config{LOG_DIR} = $opt_log_dir // catdir $config{BASE_DIR}, 'var/log/inspircd';
|
||||
$config{MANUAL_DIR} = $opt_manual_dir // catdir $config{BASE_DIR}, 'usr/share/man/man1';
|
||||
$config{MODULE_DIR} = $opt_module_dir // catdir $config{BASE_DIR}, 'usr/lib/inspircd';
|
||||
$config{RUNTIME_DIR} = $opt_runtime_dir // catdir $config{BASE_DIR}, 'var/run/inspircd';
|
||||
$config{RUNTIME_DIR} = $opt_runtime_dir // catdir $config{BASE_DIR}, $^O eq 'linux' ? '/run/inspircd' : '/var/run/inspircd';
|
||||
$config{SCRIPT_DIR} = $opt_script_dir // catdir $config{BASE_DIR}, 'usr/share/inspircd';
|
||||
} else {
|
||||
$config{BASE_DIR} = rel2abs $opt_prefix // $config{BASE_DIR} // catdir $RealDir, 'run';
|
||||
|
Loading…
x
Reference in New Issue
Block a user