diff options
author | archie <archie@FreeBSD.org> | 2006-02-20 00:56:41 +0800 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 2006-02-20 00:56:41 +0800 |
commit | 33cd54713877e65b60db4042c386cbac79728fcb (patch) | |
tree | 544576ee303bb3786a1ddacb7eb284df8bdd454b /net/mpd | |
parent | 6a73214b5c28b0e20c20eaead9312f2e8e77c69c (diff) | |
download | freebsd-ports-gnome-33cd54713877e65b60db4042c386cbac79728fcb.tar.gz freebsd-ports-gnome-33cd54713877e65b60db4042c386cbac79728fcb.tar.zst freebsd-ports-gnome-33cd54713877e65b60db4042c386cbac79728fcb.zip |
Some fixes to the rc.d startup script.
Submitted by: Michael Proto <mike@jellydonut.org>
PR: ports/93486
Diffstat (limited to 'net/mpd')
-rw-r--r-- | net/mpd/files/mpd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mpd/files/mpd.sh b/net/mpd/files/mpd.sh index 0367a23c4747..a3a6ded80304 100644 --- a/net/mpd/files/mpd.sh +++ b/net/mpd/files/mpd.sh @@ -3,7 +3,7 @@ # $FreeBSD$ # # PROVIDE: mpd -# REQUIRE: NETWORKING +# REQUIRE: NETWORKING syslogd # KEYWORD: FreeBSD # # Add the following line to /etc/rc.conf to enable mpd: @@ -11,7 +11,7 @@ # mpd_enable="YES" # -mpd_flags="-b" +mpd_flags="${mpd_flags:--b}" mpd_enable="${mpd_enable-NO}" . %%RC_SUBR%% |