]> git.mxchange.org Git - friendica.git/commitdiff
Update support for daemon pidfile config
authorHypolite Petovan <mrpetovan@gmail.com>
Tue, 26 Jun 2018 00:56:35 +0000 (20:56 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 16 Jul 2018 23:38:13 +0000 (19:38 -0400)
bin/daemon.php

index 2450e4223e5877532db6eedd8aef09d578220ea7..2813100267dfd3cc26c1ab3ce43f406b6a20b108 100755 (executable)
@@ -34,11 +34,14 @@ if ($a->mode === App::MODE_INSTALL) {
 
 Config::load();
 
-if (!isset($pidfile)) {
-       die('Please specify a pid file in the variable $pidfile in the .htconfig.php. For example:'."\n".
-               '$pidfile = "/path/to/daemon.pid";'."\n");
+if (empty(Config::get('system', 'pidfile'))) {
+       die('Please set system.pidfile in config/local.ini.php. For example:'."\n".
+               '[system]'."\n".
+               'pidfile = /path/to/daemon.pid'."\n");
 }
 
+$pidfile = Config::get('system', 'pidfile');
+
 if (in_array("start", $_SERVER["argv"])) {
        $mode = "start";
 }