aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schwarzott <zzam@gentoo.org>2008-07-30 16:54:54 +0000
committerMatthias Schwarzott <zzam@gentoo.org>2008-07-30 16:54:54 +0000
commit87be3718f2dead3ad16c5d3dbae9a66ff3396cfc (patch)
tree4693c18f12c8e6fb50fe0f183b5338d021d2952c
parentFixed wakeup times did not work, fix it. Thanks to berti for noticing. (diff)
downloadgentoo-vdr-scripts-87be3718f2dead3ad16c5d3dbae9a66ff3396cfc.tar.gz
gentoo-vdr-scripts-87be3718f2dead3ad16c5d3dbae9a66ff3396cfc.tar.bz2
gentoo-vdr-scripts-87be3718f2dead3ad16c5d3dbae9a66ff3396cfc.zip
Add full path to wakeup-helper.
svn path=/gentoo-vdr-scripts/trunk/; revision=644
-rw-r--r--ChangeLog5
-rw-r--r--usr/share/vdr/bin/vdrshutdown-really.sh4
-rw-r--r--usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh2
3 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 20bbb3a..5344d2b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,11 @@
# $Id$
30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
+ usr/share/vdr/bin/vdrshutdown-really.sh,
+ usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
+ Add full path to wakeup-helper.
+
+ 30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
usr/share/vdr/bin/vdrshutdown-really.sh:
Fixed wakeup times did not work, fix it. Thanks to berti for noticing.
diff --git a/usr/share/vdr/bin/vdrshutdown-really.sh b/usr/share/vdr/bin/vdrshutdown-really.sh
index 68dea45..c51e045 100644
--- a/usr/share/vdr/bin/vdrshutdown-really.sh
+++ b/usr/share/vdr/bin/vdrshutdown-really.sh
@@ -45,7 +45,7 @@ VDR_USERSHUTDOWN="${5}"
: ${SHUTDOWN_DEFAULT_RETRY_TIME:=10}
if [ "${DEBUG}" -ge 1 ]; then
- exec </dev/null >/tmp/vdrshutdown-gate-log 2>&1
+ exec </dev/null >/tmp/vdrshutdown-really.log 2>&1
echo Started debug output of $0 $@
nr=0
for f; do
@@ -266,7 +266,7 @@ fi
# TODO: Integrate code into here (+rewrite)
# Keep VDR_TIMER_NEXT here, instead of $@, as it could have been changed
-vdrshutdown-wakeup-helper.sh "${VDR_TIMER_NEXT}"
+/usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh "${VDR_TIMER_NEXT}"
if [ $? != 0 ]; then
mesg_q "setting wakeup time not successful"
diff --git a/usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh b/usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh
index 1f8d18e..4e32067 100644
--- a/usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh
+++ b/usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh
@@ -20,7 +20,7 @@ include shutdown-functions
shutdown_script_dir=/usr/share/vdr/shutdown
if [ "${DEBUG}" -ge 1 ]; then
- exec >/tmp/vdrshutdown-real-log 2>&1
+ exec >/tmp/vdrshutdown-wakeup-helper.log 2>&1
echo Started debug output of $0 $@
set -x
fi