]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - .inspircd.inc
Remove global namespacing, makes modules compile FASTAH. Also massive update on heade...
[user/henk/code/inspircd.git] / .inspircd.inc
index d1ea383a33fb24b4cdc17800bd09b0e4ee20b1a7..54737fdd78c66fd66611bf6bdb8871566ee14942 100644 (file)
 #               I HATE PERL.. kthxbye
 # ---------------------------------------------------
 
-my $basepath = "@BASE_DIR@";
-my $confpath = "@CONFIG_DIR@/";
-my $binpath = "@BINARY_DIR@";
-my $libpath = "@LIBRARY_DIR@";
-my $executable = "@EXECUTABLE@";
+my $basepath   =       "@BASE_DIR@";
+my $confpath   =       "@CONFIG_DIR@/";
+my $binpath    =       "@BINARY_DIR@";
+my $libpath    =       "@LIBRARY_DIR@";
+my $executable =       "@EXECUTABLE@";
+my $version    =       "@VERSION@";
 my @filesparsed;
 
 # Lets see what they want to do.. Set the variable (Cause i'm a lazy coder)
@@ -59,6 +60,11 @@ if ($arg eq "cron") {
        exit();
 }
 
+if ($arg eq "version") {
+       print "InspIRCd version: $version\n";
+       exit();
+}
+
 if ($arg eq "restart") {
        stop();
        unlink($pidfile) if (-e $pidfile);
@@ -77,7 +83,7 @@ if ($arg eq "Cheese-Sandwich") {
 # If we get here.. bad / no parameters.
 ###
 print "Invalid Argument: $arg\n";
-print "Usage: inspircd (start|stop|restart|rehash|status|cron)\n";
+print "Usage: inspircd (start|stop|restart|rehash|status|cron|version)\n";
 exit();
 
 ###