]> git.etc.gen.nz Git - spong.git/commitdiff
corrected missed reverse substitution
authorStephen L Johnson <sjohnson@monsters.org>
Fri, 9 Feb 2001 01:59:38 +0000 (01:59 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Fri, 9 Feb 2001 01:59:38 +0000 (01:59 +0000)
src/spong-network.pl

index a113d9766a67dbaf4cfbb1876550bcf7460cff67..8758022e4e7054ebf64f737b5139bea09c0e2dcf 100755 (executable)
@@ -17,7 +17,7 @@
 # (2) Converted checks to new plugin mechanism (Stephen Johnson May 28, 1999)
 #     Added user-configurable escalation mechanism
 #
-# $Id: spong-network.pl,v 1.31 2001/02/08 22:55:37 sljohnson Exp $
+# $Id: spong-network.pl,v 1.32 2001/02/09 01:59:38 sljohnson Exp $
 
 use Carp;
 use lib "@@LIBDIR@@";
@@ -52,7 +52,7 @@ if ( ! GetOptions("debug:i" => \$debuglevel, "restart" => \$restart,
 Spong::Log::set_debug_context( 'debuglevel' => $debuglevel );
 
 $me         = "@@BINDIR@@/spong-network";
-$conf_file  = $ARGV[0] || "/usr/local/spong/etc/spong.conf";
+$conf_file  = $ARGV[0] || "@@ETCDIR@@/spong.conf";
 $hosts_file = "@@ETCDIR@@/spong.hosts";
 ($HOST)     = gethostbyname(&Sys::Hostname::hostname());
 $HOST       =~ tr/A-Z/a-z/;