mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Move pidfile and command pipe to /var/run/icinga2 rather than /var/run
Fixes #3670
This commit is contained in:
parent
02be9010e7
commit
5a166f83d7
@ -37,7 +37,7 @@ icinga2varstatedir = ${localstatedir}/lib/${PACKAGE}
|
||||
icinga2varstate_DATA =
|
||||
|
||||
#run
|
||||
icinga2rundir = ${localstatedir}/run
|
||||
icinga2rundir = ${localstatedir}/run/${PACKAGE}
|
||||
icinga2run_DATA =
|
||||
|
||||
#bin
|
||||
|
@ -88,7 +88,7 @@ String CompatComponent::GetCommandPath(void) const
|
||||
|
||||
Value commandPath = config->Get("command_path");
|
||||
if (commandPath.IsEmpty())
|
||||
return Application::GetLocalStateDir() + "/run/icinga.cmd";
|
||||
return Application::GetLocalStateDir() + "/run/icinga/icinga2.cmd";
|
||||
else
|
||||
return commandPath;
|
||||
}
|
||||
|
@ -161,7 +161,7 @@ String IcingaApplication::GetPidPath(void) const
|
||||
ObjectLock olock(this);
|
||||
|
||||
if (m_PidPath.IsEmpty())
|
||||
return Application::GetLocalStateDir() + "/run/icinga2.pid";
|
||||
return Application::GetLocalStateDir() + "/run/icinga2/icinga2.pid";
|
||||
else
|
||||
return m_PidPath;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user