diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-22 16:54:21 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-22 16:54:21 -0700 |
commit | eced917d7965ab9b630bf0fe7ac031ac06ff7939 (patch) | |
tree | b2d8c76a90a6b35ad9f770ebcdbd3a4887f8af62 /scripts | |
parent | 5b5da5154d5a93bd4c55f43c17c3bd1516b7cc34 (diff) |
getpiddir.php uses commandline.inc
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/getpiddir.php | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/scripts/getpiddir.php b/scripts/getpiddir.php index d29c95cb0..9927cc6d9 100755 --- a/scripts/getpiddir.php +++ b/scripts/getpiddir.php @@ -18,15 +18,13 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -# Abort if called from a web server -if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { - print "This script must be run from the command line\n"; - exit(); -} - define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); -define('LACONICA', true); -require_once(INSTALLDIR . '/lib/common.php'); +$helptext = <<<ENDOFHELP +getpiddir.php - print out the currently configured PID directory + +ENDOFHELP; + +require_once INSTALLDIR.'/scripts/commandline.inc'; -echo common_config('daemon','piddir'); +echo common_config('daemon', 'piddir'); |