diff options
author | Johann Visagie <wjv@FreeBSD.org> | 2002-06-26 13:24:41 +0000 |
---|---|---|
committer | Johann Visagie <wjv@FreeBSD.org> | 2002-06-26 13:24:41 +0000 |
commit | ae896a0c22425fc50e5eca93d3901c63f520448b (patch) | |
tree | 7aecacd39ac6da344a348177de5098882e18909b /net/ntop/files | |
parent | 1. Update to 0.74. (diff) |
- Fix an error I introduced into rc.d startup script during previous commit.
- Bump PORTREVISION
Notes
Notes:
svn path=/head/; revision=62018
Diffstat (limited to 'net/ntop/files')
-rw-r--r-- | net/ntop/files/ntop.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ntop/files/ntop.sh b/net/ntop/files/ntop.sh index 0bb75a6fedf9..920ba0eacf19 100644 --- a/net/ntop/files/ntop.sh +++ b/net/ntop/files/ntop.sh @@ -19,7 +19,7 @@ http_port='3000' https_port='3001' # Directory for ntop.access.log -logdir='%%LOGDIR%%/ntop.access.log' +logdir='%%LOGDIR%%' # Specify any additional arguments here - see ntop(8) additional_args='-E' @@ -28,12 +28,12 @@ additional_args='-E' # End of user-configurable variables #---------------------------------------------------------------------- -args='-d -t0' +args='-d -L' [ ! -z $interfaces ] && args="$args -i $interfaces" [ ! -z $http_port ] && args="$args -w $http_port" [ ! -z $https_port ] && args="$args -W $https_port" -[ ! -z $logdir ] && args="$args -a ${logdir}" +[ ! -z $logdir ] && args="$args -a ${logdir}/ntop.access.log" [ ! -z $userid ] && args="$args -u $userid" [ ! -z "$additional_args" ] && args="$args $additional_args" |