Skip to content
Snippets Groups Projects
Commit 3b01b3e8 authored by Steven Murray's avatar Steven Murray
Browse files

Added DaemonUserName=cta and DaemonGroupName=tape to /etc/cta/cta-taped.conf

parent 32c97e7d
No related branches found
No related tags found
No related merge requests found
......@@ -81,8 +81,8 @@ void cta::tape::daemon::TapeDaemon::exceptionThrowingMain() {
// raw IO in the future
setProcessCapabilities("cap_setgid,cap_setuid+ep cap_sys_rawio+p");
const std::string userName = "cta";
const std::string groupName = "cta";
const std::string userName = m_globalConfiguration.daemonUserName.value();
const std::string groupName = m_globalConfiguration.daemonGroupName.value();
daemonizeIfNotRunInForegroundAndSetUserAndGroup(userName, groupName);
setDumpable();
......
......@@ -32,6 +32,8 @@ TapedConfiguration TapedConfiguration::createFromCtaConf(
ConfigurationFile cf(generalConfigPath);
// Extract configuration from parsed config file
// TpConfig
ret.daemonUserName.setFromConfigurationFile(cf, generalConfigPath);
ret.daemonGroupName.setFromConfigurationFile(cf, generalConfigPath);
ret.logMask.setFromConfigurationFile(cf, generalConfigPath);
ret.tpConfigPath.setFromConfigurationFile(cf, generalConfigPath);
// Memory management
......
......@@ -44,6 +44,12 @@ struct TapedConfiguration {
//----------------------------------------------------------------------------
// Basics: tp config
//----------------------------------------------------------------------------
/// The user name of the cta-taped daemon process
SourcedParameter<std::string> daemonUserName{
"taped", "DaemonUserName", "cta", "Compile time default"};
/// The group name of the cta-taped daemon process
SourcedParameter<std::string> daemonGroupName{
"taped", "DaemonGroupName", "tape", "Compile time default"};
/// The log mask. Logs with a level lower than this value will be masked.
SourcedParameter<std::string> logMask{
"taped", "LogMask", "DEBUG", "Compile time default"};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment