mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 15:36:35 -04:00
35 lines
1.1 KiB
Tcl
35 lines
1.1 KiB
Tcl
--- pcap_agent.tcl.orig 2012-12-17 22:31:44.000000000 +0000
|
|
+++ pcap_agent.tcl 2012-12-17 22:42:50.000000000 +0000
|
|
@@ -1,6 +1,4 @@
|
|
#!/bin/sh
|
|
-# Run tcl from users PATH \
|
|
-exec tclsh "$0" "$@"
|
|
|
|
# $Id: pcap_agent.tcl,v 1.13 2011/03/10 22:03:33 bamm Exp $ #
|
|
|
|
@@ -771,13 +769,13 @@
|
|
}
|
|
|
|
# Parse the config file here
|
|
-# Default location is /etc/pcap_agent.conf or pwd
|
|
+# Default location is /usr/local/etc/sguil-sensor/pcap_agent.conf or pwd
|
|
if { ![info exists CONF_FILE] } {
|
|
|
|
# No conf file specified check the defaults
|
|
- if { [file exists /etc/pcap_agent.conf] } {
|
|
+ if { [file exists /usr/local/etc/sguil-sensor/pcap_agent.conf] } {
|
|
|
|
- set CONF_FILE /etc/pcap_agent.conf
|
|
+ set CONF_FILE /usr/local/etc/sguil-sensor/pcap_agent.conf
|
|
|
|
} elseif { [file exists ./pcap_agent.conf] } {
|
|
|
|
@@ -786,7 +784,7 @@
|
|
} else {
|
|
|
|
puts "Couldn't determine where the pcap_agent.tcl config file is"
|
|
- puts "Looked for /etc/pcap_agent.conf and ./pcap_agent.conf."
|
|
+ puts "Looked for /usr/local/etc/sguil-sensor/pcap_agent.conf and ./pcap_agent.conf."
|
|
DisplayUsage $argv0
|
|
|
|
}
|