mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
- Update to 1.2.1 - no functional changes, entirely compilation fixes on
other platforms. I figure if I have to bump PORTREVISION for the other change I might as well just update to 1.2.1 to stop the occasional "there is a new version, please update" emails. - Change REQUIRE to be DAEMON instead of NETWORKING. Previously it would try to start before ldconfig but would fail because ldnet could not be found. - While here, add some other small changes to RC script per dougb@.
This commit is contained in:
parent
3374cbb931
commit
d5651d2e08
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=279901
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= daemonlogger
|
||||
PORTVERSION= 1.2.0
|
||||
PORTVERSION= 1.2.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://www.snort.org/users/roesch/code/
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (daemonlogger-1.2.0.tar.gz) = 5aeace50aae924743296cc9e97351132f604830df5185a8a74e55f61ada3904c
|
||||
SIZE (daemonlogger-1.2.0.tar.gz) = 114149
|
||||
SHA256 (daemonlogger-1.2.1.tar.gz) = 79fcd34d815e9c671ffa1ea3c7d7d50f895bb7a79b4448c4fd1c37857cf44a0b
|
||||
SIZE (daemonlogger-1.2.1.tar.gz) = 114820
|
||||
|
@ -1,7 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $FreeBSD$
|
||||
#
|
||||
# PROVIDE: daemonlogger
|
||||
# REQUIRE: NETWORKING
|
||||
# REQUIRE: DAEMON
|
||||
# KEYWORD: shutdown
|
||||
|
||||
#
|
||||
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to enable daemonlogger:
|
||||
@ -14,13 +17,13 @@
|
||||
name="daemonlogger"
|
||||
rcvar=`set_rcvar`
|
||||
|
||||
command_args=" > /dev/null 2>&1"
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
: ${daemonlogger_enable:="NO"}
|
||||
: ${daemonlogger_flags:="-d -l /var/log"}
|
||||
|
||||
command=%%PREFIX%%/bin/daemonlogger
|
||||
command_args=" > /dev/null 2>&1"
|
||||
|
||||
|
||||
run_rc_command "$1"
|
||||
|
Loading…
Reference in New Issue
Block a user