diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2007-01-10 06:47:24 +0000 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2007-01-10 06:47:24 +0000 |
commit | ce56c53bec034494cdf00f65562e0b58fde7cab1 (patch) | |
tree | f85957d867366e61176a968bc36983dd1a820ceb /net/mpd/files | |
parent | - update to 0.63 (diff) |
* Use USE_RC_SUBR instead of custom hacks which did not seem to work correctly
* Fix typo in the startup script
Reported by: Wojciech Puchar <wojtek@tensor.3miasto.net> (on ports@)
Diffstat (limited to 'net/mpd/files')
-rw-r--r-- | net/mpd/files/mpd.in (renamed from net/mpd/files/mpd.sh) | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/mpd/files/mpd.sh b/net/mpd/files/mpd.in index 1e57ace8b2aa..2168bb71edda 100644 --- a/net/mpd/files/mpd.sh +++ b/net/mpd/files/mpd.in @@ -1,17 +1,19 @@ #!/bin/sh # -# $FreeBSD$ +# $FreeBSD: /tmp/pcvs/ports/net/mpd/files/Attic/mpd.in,v 1.1 2007-01-10 06:47:24 vd Exp $ # # PROVIDE: mpd # REQUIRE: NETWORKING syslogd # -# Add the following line to /etc/rc.conf to enable mpd: +# Add the following line to /etc/rc.conf[.local] to enable mpd: # # mpd_enable="YES" # +# You can also set mpd_flags to any flags you want. The default is "-b". +# mpd_flags="${mpd_flags:--b}" -mpd_enable="${mpd_enable-NO}" +mpd_enable="${mpd_enable:-NO}" . %%RC_SUBR%% |