archive/List: add option to disable archive plugins in mpd.conf

Closes https://github.com/MusicPlayerDaemon/MPD/issues/1384
This commit is contained in:
Max Kellermann
2022-02-14 16:30:38 +01:00
parent d3db0400b0
commit fdc0329e64
11 changed files with 59 additions and 9 deletions

View File

@@ -341,6 +341,35 @@ The following table lists the input options valid for all plugins:
More information can be found in the :ref:`input_plugins` reference.
Configuring archive plugins
---------------------------
To configure an archive plugin, add an :code:`archive_plugin` block to
:file:`mpd.conf`:
.. code-block:: none
archive_plugin {
name "zzip"
enabled "no"
}
The following table lists the input options valid for all plugins:
.. list-table::
:widths: 20 80
:header-rows: 1
* - Name
- Description
* - **name**
- The name of the plugin
* - **enabled yes|no**
- Allows you to disable a plugin without recompiling. By
default, all plugins are enabled.
More information can be found in the :ref:`archive_plugins` reference.
.. _input_cache:
Configuring the Input Cache