diff options
author | Peter Powell <petpow@saberuk.com> | 2019-12-09 01:26:33 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-12-09 01:33:52 +0000 |
commit | 350a01d60c94fbdd3c0b6361b98a77b148a35116 (patch) | |
tree | ceef76c73949491148702a039c31aa76b70802e5 /src/inspircd.cpp | |
parent | 37b46ade4b760602c814e24adaa0f0278b4f43f4 (diff) |
Make ForkIntoBackground handle exiting by itself.
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 7a5cfe4e8..d0dfce2e7 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -226,7 +226,7 @@ namespace } // Attempts to fork into the background. - bool ForkIntoBackground() + void ForkIntoBackground() { #ifndef _WIN32 // We use VoidSignalHandler whilst forking to avoid breaking daemon scripts @@ -238,7 +238,8 @@ namespace if (childpid < 0) { ServerInstance->Logs->Log("STARTUP", LOG_DEFAULT, "fork() failed: %s", strerror(errno)); - return false; + std::cout << con_red << "Error:" << con_reset << " unable to fork into background: " << strerror(errno); + ServerInstance->Exit(EXIT_STATUS_FORK); } else if (childpid > 0) { @@ -257,7 +258,6 @@ namespace SocketEngine::RecoverFromFork(); } #endif - return true; } // Increase the size of a core dump file to improve debugging problems. @@ -504,13 +504,8 @@ InspIRCd::InspIRCd(int argc, char** argv) SetSignals(); if (!Config->cmdline.runasroot) CheckRoot(); - - if (!Config->cmdline.nofork && !ForkIntoBackground()) - { - std::cout << "ERROR: could not go into daemon mode. Shutting down." << std::endl; - Logs->Log("STARTUP", LOG_DEFAULT, "ERROR: could not go into daemon mode. Shutting down."); - Exit(EXIT_STATUS_FORK); - } + if (!Config->cmdline.nofork) + ForkIntoBackground(); std::cout << "InspIRCd Process ID: " << con_green << getpid() << con_reset << std::endl; |