From: dms Date: Thu, 4 Oct 2001 14:17:48 +0000 (+0000) Subject: - ok... is there a way, in cvs, to commit everything in one go? X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f2ba63c8bfbc17a646a16acdfbbe009b68b105c3;p=infobot.git - ok... is there a way, in cvs, to commit everything in one go? git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@518 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/blootbot/blootbot b/blootbot/blootbot index 71efd33..02ea59b 100755 --- a/blootbot/blootbot +++ b/blootbot/blootbot @@ -4,17 +4,28 @@ # blootbot -- copyright david sobon (c) 1999-infinity use strict; -use vars qw($bot_base_dir $bot_src_dir $bot_misc_dir - $bot_pid $memusage %param +use vars qw($bot_base_dir $bot_src_dir $bot_misc_dir $bot_state_dir + $bot_data_dir $bot_config_dir $bot_log_dir $bot_run_dir + $bot_pid $memusage %param $fhs ); BEGIN { - # set this to the absolute path if you need it; especially - # if . is not in your path - - $bot_base_dir = '.'; + $fhs = 0; + + if ($fhs) { # FHS + $bot_base_dir = $bot_state_dir; + $bot_config_dir = '.'; + } else { # non-FHS + $bot_base_dir = '.'; + $bot_config_dir = 'files/'; + $bot_data_dir = 'files/'; + $bot_state_dir = 'files/'; + $bot_run_dir = '.'; + } + # common. $bot_src_dir = "$bot_base_dir/src"; $bot_misc_dir = "$bot_base_dir/files"; + $bot_pid = $$; require "$bot_src_dir/logger.pl";