diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2012-06-19 20:26:20 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2012-06-19 20:26:20 +0200 |
commit | 415ef4607e0cb291b0f5fa68620ac13d3274404b (patch) | |
tree | 4133ad89ab7ff8782c653995b534fd9f6881146e | |
parent | 0caaa241e7a1e23bb2d66e09a48a18b873ffcf88 (diff) | |
download | vdr-plugin-epgsearch-415ef4607e0cb291b0f5fa68620ac13d3274404b.tar.gz vdr-plugin-epgsearch-415ef4607e0cb291b0f5fa68620ac13d3274404b.tar.bz2 |
Assume svdrpsend is in $PATH in all scripts
-rwxr-xr-x | scripts/epg2autotimer.sh | 2 | ||||
-rwxr-xr-x | scripts/epg2taste.sh | 2 | ||||
-rwxr-xr-x | scripts/mtdone2epgsearchdone.sh | 4 | ||||
-rwxr-xr-x | scripts/recordingdone.sh | 4 | ||||
-rwxr-xr-x | scripts/timerrep.sh | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/scripts/epg2autotimer.sh b/scripts/epg2autotimer.sh index 524720b..bc1c981 100755 --- a/scripts/epg2autotimer.sh +++ b/scripts/epg2autotimer.sh @@ -11,7 +11,7 @@ # CONFIG START AUTOTIMER_FILE="$SOURCEDIR/vdradmin/vdradmind.at" - SVDRPSEND=/usr/local/bin/svdrpsend + SVDRPSEND=svdrpsend # default autotimer settings STATUS=1 # 0 = inactive (by default) / 1 = active diff --git a/scripts/epg2taste.sh b/scripts/epg2taste.sh index 575b2c3..516c22e 100755 --- a/scripts/epg2taste.sh +++ b/scripts/epg2taste.sh @@ -9,7 +9,7 @@ # CONFIG START TASTE_FILE="/etc/vdr/plugins/taste.conf" - SVDRPSEND=/usr/local/bin/svdrpsend + SVDRPSEND=svdrpsend # default taste settings REGULAR_EXPRESSION=0 # Regular Expression / Regulärer Ausdruck diff --git a/scripts/mtdone2epgsearchdone.sh b/scripts/mtdone2epgsearchdone.sh index 00d7ecb..f3513a9 100755 --- a/scripts/mtdone2epgsearchdone.sh +++ b/scripts/mtdone2epgsearchdone.sh @@ -22,8 +22,8 @@ ASK_SID=no # What S-ID should be used if no other selected DEFAULT_SID=0 -# adjust the following lines to your path to svdrpsend -SVDRPSEND=/usr/local/bin/svdrpsend +# adjust the following line to your path to svdrpsend +SVDRPSEND=svdrpsend # Home of EPGsearch EPGSEARCH_HOME="/etc/vdr/plugins" diff --git a/scripts/recordingdone.sh b/scripts/recordingdone.sh index ce88509..6952287 100755 --- a/scripts/recordingdone.sh +++ b/scripts/recordingdone.sh @@ -56,8 +56,8 @@ DEFAULT_SID=-1 # Use the recording-dir's ctime as recording time? CTIME_FROM_RECORDING=yes -# adjust the following lines to your path to svdrpsend -SVDRPSEND=/usr/local/bin/svdrpsend +# adjust the following line to your path to svdrpsend +SVDRPSEND=svdrpsend # Home of EPGsearch EPGSEARCH_HOME="/etc/vdr/plugins" diff --git a/scripts/timerrep.sh b/scripts/timerrep.sh index 691e279..fb1c4f4 100755 --- a/scripts/timerrep.sh +++ b/scripts/timerrep.sh @@ -16,7 +16,7 @@ # your plugins config dir PLUGINCONFDIR=/etc/vdr/plugins/epgsearch # path to svdrpsend -SVDRPSEND=/usr/local/src/VDR/svdrpsend +SVDRPSEND=svdrpsend # if you are using special subfolders for some recordings, please add them here FOLDERS="Comedy,Wissen,Serien,Magazine" # the key used to call epgsearch |