summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-03 12:50:52 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-03 12:50:52 +0000
commitf9055253d2e8a7612fced65c3f96a6f940111148 (patch)
tree45d518eeb12a720e400dbe89fdf9c12f716af055
parent845d7571ec9840f3cab361ca7502af90bc8f73a3 (diff)
Fixed to always look for the ircd.log within the bin/ dir
Fixed to not spool the error log after ./inspircd debug git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1290 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--.inspircd.inc16
-rw-r--r--include/inspircd.h2
2 files changed, 5 insertions, 13 deletions
diff --git a/.inspircd.inc b/.inspircd.inc
index 4f70bad75..5900ce9c6 100644
--- a/.inspircd.inc
+++ b/.inspircd.inc
@@ -18,7 +18,7 @@
$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@";
# Lets see what they want to do.. Set the variable (Cause i'm a lazy coder)
my $arg = $ARGV[0];
@@ -82,11 +82,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,15 +97,7 @@ 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");
}
diff --git a/include/inspircd.h b/include/inspircd.h
index f0199e9dc..d58d4eeff 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -85,7 +85,7 @@ typedef std::deque<std::string> file_cache;
typedef void (handlerfunc) (char**, int, userrec*);
/* prototypes */
-int InspIRCd(void);
+int InspIRCd(char** argv, int argc);
int InitConfig(void);
void Error(int status);
void send_error(char *s);