blob: a43744ad1d24c4f133e4fc6c39192c9dd88f7c72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# User defined Makefile options for the ripit plugin
#
# Copy this file to 'Make.config' and change the parameters as necessary.
#
# Used for IPC, the VDR user need access rights to create, delete and modify
# these files (the directory need already exists). Make sure that files left
# here (e.g. on VDR crash) are deleted at system startup.
PLUGIN_RIPIT_LOG_FILE=/tmp/ripit.log
PLUGIN_RIPIT_LOCK_FILE=/tmp/ripit.process
PLUGIN_RIPIT_ABORT_FILE=/tmp/ripit.stop
# The default value for the target. Could be changed later in plugin setup.
# The VDR user need access rights to create it with
# mkdir -p <PLUGIN_RIPIT_DEFAULT_TARGET_DIRECTORY>/<cd name>
# an write files to that directory.
PLUGIN_RIPIT_DEFAULT_TARGET_DIRECTORY=/srv/AUDIO/ripped
|