1234567891011121314151617181920212223242526272829303132 |
- <?php
- define('INSTALLDIR', dirname(__DIR__));
- define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
- $helptext = <<<ENDOFHELP
- getpiddir.php - print out the currently configured PID directory
- ENDOFHELP;
- require_once INSTALLDIR.'/scripts/commandline.inc';
- echo common_config('daemon', 'piddir');
|