mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #3259
6d900a40
removed systemd private tempdir (ston1th)496055d1
monerod: do not log to tmpdir in daemon mode (ston1th)
This commit is contained in:
commit
b54587d7b3
@ -54,6 +54,10 @@ else()
|
||||
)
|
||||
endif()
|
||||
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
add_definitions(-DDEBUG_TMPDIR_LOG=1)
|
||||
endif()
|
||||
|
||||
monero_private_headers(daemonizer
|
||||
${daemonizer_private_headers})
|
||||
monero_add_library(daemonizer
|
||||
|
@ -115,6 +115,7 @@ void fork(const std::string & pidfile)
|
||||
quit("Unable to open /dev/null");
|
||||
}
|
||||
|
||||
#ifdef DEBUG_TMPDIR_LOG
|
||||
// Send standard output to a log file.
|
||||
const char *tmpdir = getenv("TMPDIR");
|
||||
if (!tmpdir)
|
||||
@ -133,6 +134,7 @@ void fork(const std::string & pidfile)
|
||||
{
|
||||
quit("Unable to dup output descriptor");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
} // namespace posix
|
||||
|
@ -15,7 +15,6 @@ ExecStart=/usr/bin/monerod --config-file /etc/monerod.conf \
|
||||
--detach --pidfile /run/monero/monerod.pid
|
||||
|
||||
Restart=always
|
||||
PrivateTmp=true
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
Loading…
Reference in New Issue
Block a user