Merge pull request #3259

6d900a40 removed systemd private tempdir (ston1th)
496055d1 monerod: do not log to tmpdir in daemon mode (ston1th)
release-v0.4.0.1
Riccardo Spagni 6 years ago
commit b54587d7b3
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -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…
Cancel
Save