summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-12 15:47:57 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-12 15:47:57 +0000
commit1f2176d318d3ab64f507f3ae048d6fbb8a8e4a6d (patch)
treec6f90538b2961d1acbe8d7a978519c96acbba340
parent0fbc81cffcf28adb80b731f3604d7ea02c32f86b (diff)
Fixed .inspircd.inc
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2345 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--.inspircd.inc10
1 files changed, 2 insertions, 8 deletions
diff --git a/.inspircd.inc b/.inspircd.inc
index 05182c57c..3fd45f5e2 100644
--- a/.inspircd.inc
+++ b/.inspircd.inc
@@ -86,14 +86,8 @@ sub start {
if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; }
# If we are still alive here.. Try starting the IRCd..
system("$binpath/$executable");
- sleep 1;
- if (getstatus() == 0) {
- print "InspIRCd Seemingly not started, Log follows:\n";
- system("tail $binpath/ircd.log");
- } else {
- # We're good!
- return 1;
- }
+ sleep 2;
+ return 1;
}
sub debug {