diff options
author | vs <vs@FreeBSD.org> | 2004-12-15 08:04:56 +0000 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2004-12-15 08:04:56 +0000 |
commit | ed1825cf10bac9411db2872f2a79e32f01bc8fcf (patch) | |
tree | 3b983400b454c5eb8a474719b6bd122c1d3b15c8 /security | |
parent | 526c20391bf629d9510a2ef4f50f0bf6a063f886 (diff) | |
download | FreeBSD-ports-ed1825cf10bac9411db2872f2a79e32f01bc8fcf.zip FreeBSD-ports-ed1825cf10bac9411db2872f2a79e32f01bc8fcf.tar.gz |
Fix path to scanlogd in rc-script (bump PORTREV)
PR: ports/75034
Submitted by: Hilko Meyer
Approved by: maintainer
Diffstat (limited to 'security')
-rw-r--r-- | security/scanlogd/Makefile | 2 | ||||
-rw-r--r-- | security/scanlogd/files/scanlogd.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/security/scanlogd/Makefile b/security/scanlogd/Makefile index 32176bb..c981436 100644 --- a/security/scanlogd/Makefile +++ b/security/scanlogd/Makefile @@ -7,7 +7,7 @@ PORTNAME= scanlogd PORTVERSION= 2.2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://openwall.com/scanlogd/ \ ftp://ftp.openwall.com/pub/projects/scanlogd/ \ diff --git a/security/scanlogd/files/scanlogd.sh b/security/scanlogd/files/scanlogd.sh index 82baadd..563637b 100644 --- a/security/scanlogd/files/scanlogd.sh +++ b/security/scanlogd/files/scanlogd.sh @@ -12,14 +12,14 @@ prefix=%%PREFIX%% scanlogd_enable=${scanlogd_enable:-"NO"} # Enable scanlogd -scanlogd_program="${prefix}/sbin/scanlogd" # Location of scanlogd +scanlogd_program="${prefix}/bin/scanlogd" # Location of scanlogd scanlogd_flags=${scanlogd_flags:-""} # Flags to scanlogd . %%RC_SUBR%% name="scanlogd" rcvar=`set_rcvar` -command="${prefix}/sbin/${name}" +command="${prefix}/bin/${name}" required_files="" load_rc_config $name |