X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=.inspircd.inc;h=24e280019640aa3932676fe99530bf71a0e08825;hb=a10024d9e354a2c5567976fd4ee8e5469e939302;hp=e86ad18d482fc067b9bb44375f540e7c357dac0f;hpb=3f839fc4ed8652014ef2c377ebe36f4ccd065108;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/.inspircd.inc b/.inspircd.inc index e86ad18d4..24e280019 100644 --- a/.inspircd.inc +++ b/.inspircd.inc @@ -15,10 +15,11 @@ # I HATE PERL.. kthxbye # --------------------------------------------------- -$ENV{"LD_LIBRARY_PATH"} = $ENV{"LD_LIBRARY_PATH"} . ":/usr/local/lib/mysql:/usr/lib/mysql"; - my $conffile = "@CONFIG_DIR@/inspircd.conf"; -my $binpath = "@BINARY_DIR@/inspircd"; +my $binpath = "@BINARY_DIR@"; +my $libpath = "@LIBRARY_DIR@"; + +$ENV{"LD_LIBRARY_PATH"} = $ENV{"LD_LIBRARY_PATH"} . ":/usr/local/lib/mysql:/usr/lib/mysql:$libpath"; # Lets see what they want to do.. Set the variable (Cause i'm a lazy coder) my $arg = $ARGV[0]; @@ -82,11 +83,11 @@ sub start { # Check to see its not 'running' already. if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; } # If we are still alive here.. Try starting the IRCd.. - system($binpath); + system("$binpath/inspircd"); sleep 1; if (getstatus() == 0) { print "InspIRCd Seemingly not started, Log follows:\n"; - system("tail ircd.log"); + system("tail $binpath/ircd.log"); } else { # We're good! return 1; @@ -97,20 +98,12 @@ sub debug { # Check to see its not 'running' already. if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; } # If we are still alive here.. Try starting the IRCd.. - system("gdb --args $binpath -nofork -debug"); - sleep 1; - if (getstatus() == 0) { - print "InspIRCd Seemingly not started, Log follows:\n"; - system("tail ircd.log"); - } else { - # We're good! - return 1; - } + system("gdb --args $binpath/inspircd -nofork -debug"); } sub stop { - if (getstatus() == 0) { print "InspIRCd is not running. (Or PID File not found)"; return 0; } + if (getstatus() == 0) { print "InspIRCd is not running. (Or PID File not found)\n"; return 0; } # Get to here, we have something to kill. my $pid = getprocessid(); print "Stopping InspIRCd...\n"; @@ -126,7 +119,7 @@ sub stop { sub getpidfile { - open INFILE, "< $conffile" or die "Couldn't open $conffile"; + open INFILE, "< $conffile" or die "Couldn't open $conffile\n"; my(@lines) = ; close INFILE; chomp(@lines);