aboutsummaryrefslogtreecommitdiffstats
path: root/net/dhcprelay
Commit message (Collapse)AuthorAgeFilesLines
* In the rc.d scripts, change assignments to rcvar to use thedougb2012-01-141-1/+1
| | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
* The vast majority of pkg-descr files had the following format when theydougb2011-10-241-1/+0
| | | | | | | | | | | | | | | | had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
* Remove more tags from pkg-descr files fo the form:dougb2011-10-241-1/+2
| | | | | | | | - Name em@i.l or variations thereof. While I'm here also fix some whitespace and other formatting errors, including moving WWW: to the last line in the file.
* Remove painful examples of foo="", with particular prejudice againstdougb2011-05-151-2/+2
| | | | | | | | | | | | | | | constructions that parse out to [ -z "$foo" ] && foo="" These are bad examples that get copied and pasted into new code, so the hope is that with less bad examples there will be less need for me to bring this up in review. In a few of these files all that were changed were comments so that next time I search for these patterns I won't trip on the file for no reason. In a few places, add $FreeBSD$ No functional changes, so no PORTREVISION bumps
* - Get Rid MD5 supportmiwi2011-03-201-1/+0
|
* Begin the process of deprecating sysutils/rc_subr bydougb2010-03-271-1/+1
| | | | s#. %%RC_SUBR%%#. /etc/rc.subr#
* Tune up the rc.d script a bit:dougb2009-07-211-14/+9
| | | | | | | | | 1. Change default variable assignments at the top to comments (two of them were assigning empty default values). 2. Move the default for _enable to below load_rc_config 3. Add the _ifaces and _server options to command_args which eliminates the need for the precmd 4. s#/usr/local#%%PREFIX%%#
* - USE_RC_SUBR != yespgollucci2009-07-182-5/+4
| | | | | | | | (rename .sh -> .in) PR: ports/136844 Approved by: maintainer Submitted by: myself (pgollucci@)
* Update to version 1.2, which fixes problem with Cisco phones.edwin2006-03-215-11/+9
|
* Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.dougb2006-02-211-2/+1
| | | | | | | We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts.
* Update to vesion 1.1edwin2005-11-172-4/+4
|
* Add net/dhcprelay, a DHCP Relay Agent.edwin2005-11-155-0/+109
See the pkg-descr for reasoning why I had to make this one. WWW: http://www.mavetju.org/networking/ Author: Edwin Groothuis <edwin@mavetju.org>