Summary: | net/isc-dhcp31-server rcNG script has syntax errors | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | neil | ||||
Component: | Individual Port(s) | Assignee: | Josh Paetzel <jpaetzel> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
neil
2009-09-01 22:00:04 UTC
Responsible Changed From-To: freebsd-ports-bugs->jpaetzel Over to maintainer (via the GNATS Auto Assign Tool) Production patch for files/isc-dhcpd.in: --- files/isc-dhcpd.in.orig 2009-07-30 08:32:44.000000000 +0100 +++ files/isc-dhcpd.in 2009-09-02 07:56:59.000000000 +0100 @@ -706,9 +706,8 @@ setup_flags rc_flags_mod="$rc_flags" # Eliminate '-q' flag if it is present - echo $rc_flags case "$rc_flags" in - *-q*) rc_flags_mod=`echo "$(rc_flags)" | sed -Ee 's/(^-q | -q | -q$)'//` ;; + *-q*) rc_flags_mod=`echo "${rc_flags}" | sed -Ee 's/(^-q | -q | -q$)//'` ;; esac if ! ${command} -t -q ${rc_flags_mod}; then err 1 "`${command} -t ${rc_flags_mod}` Configuration file sanity check failed" jpaetzel 2009-09-02 13:47:05 UTC FreeBSD ports repository Modified files: net/isc-dhcp31-server Makefile net/isc-dhcp31-server/files isc-dhcpd.in Log: Fix syntax errors in rcNG script PR: ports/138461 Submitted by: Neil Darlow <neil@darlow.co.uk> Approved by: itetcu@ (mentor) Revision Changes Path 1.129 +1 -1 ports/net/isc-dhcp31-server/Makefile 1.8 +2 -3 ports/net/isc-dhcp31-server/files/isc-dhcpd.in _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed, thanks! |