Subject: | unrecognized parameter in config file at line 5: error_file |
According to MPD v0.16 changelog the deprecated "error_file" option has
been removed (and sort of merged with the "log_file" one).
This causes Test::Corpus::Audio::MPD to fail when starting mpd, with the
error "unrecognized parameter in config file at line 5: error_file".
The attached patch should solve the issue.
Cheers
Subject: | fix-deprecated-conf-error_file.patch |
--- a/share/mpd.conf.template
+++ b/share/mpd.conf.template
@@ -2,7 +2,6 @@
music_directory "PWD/music"
playlist_directory "TMP/playlists"
log_file "/dev/null"
-error_file "/dev/null"
db_file "TMP/music.db"
state_file "TMP/state"
pid_file "TMP/pid"