diff options
author | Wesley Shields <wxs@FreeBSD.org> | 2009-07-14 12:59:10 +0000 |
---|---|---|
committer | Wesley Shields <wxs@FreeBSD.org> | 2009-07-14 12:59:10 +0000 |
commit | 78c96492b1cfe6ea56fe1c8dd1ec7f474625f073 (patch) | |
tree | 76218f70c507189a31e5283ed4ff4b45ece96cbc /net-mgmt | |
parent | ab83431b95a3064a3c84b9afe79b2b308ed661de (diff) |
- Eliminate empty _flags assignment
- s/ipcad/flowd
Noticed by: dougb
Notes
Notes:
svn path=/head/; revision=237777
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/flowd/files/flowd.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net-mgmt/flowd/files/flowd.in b/net-mgmt/flowd/files/flowd.in index b28589667e97..e399d1428dc0 100644 --- a/net-mgmt/flowd/files/flowd.in +++ b/net-mgmt/flowd/files/flowd.in @@ -5,12 +5,14 @@ # PROVIDE: flowd # REQUIRE: DAEMON # -# Add the following lines to /etc/rc.conf to run ipcad: +# Add the following lines to /etc/rc.conf to run flowd: # # flowd_enable (bool): Set it to "YES" to enable flowd. # Default is "NO". # flowd_conf (file): Local config file. # Default is "%%PREFIX%%/etc/flowd.conf". +# flowd_flags (string): Flags to pass to flowd. +# Default is empty. # . %%RC_SUBR%% @@ -21,7 +23,6 @@ load_rc_config ${name} : ${flowd_enable="NO"} : ${flowd_conf="%%PREFIX%%/etc/flowd.conf"} -: ${flowd_flags=""} required_files="${flowd_conf}" command="%%PREFIX%%/sbin/flowd" |