- Pass "-p ${pidfile}" parameter before "${mpd_flags}" in rc.d script.

PR:		ports/109096
Submitted by:	Volker Werth <volker@vwsoft.com>
Approved by:	Alexander Motin <mav@alkar.net> (maintainer)
This commit is contained in:
Alejandro Pulver 2007-02-17 04:50:11 +00:00
parent 87a67e1b2b
commit 81ff8145da
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=185346
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ case "${mpd_flags}" in
exit 1
;;
*)
command_args="${mpd_flags} -p ${pidfile}"
command_args="-p ${pidfile} ${mpd_flags}"
;;
esac

View file

@ -38,7 +38,7 @@ case "${mpd_flags}" in
exit 1
;;
*)
command_args="${mpd_flags} -p ${pidfile}"
command_args="-p ${pidfile} ${mpd_flags}"
;;
esac