From 0057cbc61992106aa8294555c3f0d73da02bdf50 Mon Sep 17 00:00:00 2001 From: Udo Richter Date: Sun, 6 Jun 2010 18:23:51 +0200 Subject: New: If runvdr is invoked as XYZ, check for ~/.XYZ.conf and /etc/XYZ.conf --- HISTORY | 1 + runvdr | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/HISTORY b/HISTORY index a2ba5c7..534850f 100644 --- a/HISTORY +++ b/HISTORY @@ -5,6 +5,7 @@ xxxx-xx-xx: - Fix: Debian init script: Pull default locale - Fix: Fail to load if AddPlugin is last in runvdr.conf - Fix: Error message if runvdr.conf fails +- New: If runvdr is invoked as XYZ, check for ~/.XYZ.conf and /etc/XYZ.conf 2009-06-28: Version 0.4.2 - New: Support -i and --instance of VDR-1.7.4+ diff --git a/runvdr b/runvdr index 54b95ca..e0cce12 100755 --- a/runvdr +++ b/runvdr @@ -24,6 +24,7 @@ # The project's page is at http://www.udo-richter.de/vdr/scripts.html#runvdr +RUNVDR="${0##*/}" RUNVDRCONF="" @@ -333,6 +334,12 @@ function LoadConfFile() { VDRUSER="" # Old option, supported for compatibility only + if [ -z "$RUNVDRCONF" -a -r ~/.$RUNVDR.conf ] ; then + RUNVDRCONF=~/.$RUNVDR.conf + fi + if [ -z "$RUNVDRCONF" -a -r /etc/$RUNVDR.conf ] ; then + RUNVDRCONF=/etc/$RUNVDR.conf + fi if [ -z "$RUNVDRCONF" -a -r ~/.runvdr.conf ] ; then RUNVDRCONF=~/.runvdr.conf fi -- cgit v1.2.3