aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schwarzott <zzam@gentoo.org>2005-12-30 21:58:57 +0000
committerMatthias Schwarzott <zzam@gentoo.org>2005-12-30 21:58:57 +0000
commitccd765d694de81a1cb237c946753c5621340e440 (patch)
tree47439354905967bb536e8f38874ddf18540f1483
parentadded message queue (diff)
downloadgentoo-vdr-scripts-ccd765d694de81a1cb237c946753c5621340e440.tar.gz
gentoo-vdr-scripts-ccd765d694de81a1cb237c946753c5621340e440.tar.bz2
gentoo-vdr-scripts-ccd765d694de81a1cb237c946753c5621340e440.zip
added missing function
svn path=/gentoo-vdr-scripts/trunk/; revision=108
-rw-r--r--ChangeLog4
-rw-r--r--usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh6
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b764fcc..d99d489 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for gentoo-vdr-scripts
30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
+ usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
+ added missing function
+
+ 30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
usr/lib/vdr/bin/vdrshutdown-gate.sh:
added message queue
diff --git a/usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh b/usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh
index bd2f71d..cabdf84 100644
--- a/usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh
+++ b/usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh
@@ -3,6 +3,12 @@ source /usr/lib/vdr/rcscript/functions-shutdown.sh
THREAD_DIR=/usr/lib/vdr/shutdown
PERIODIC_THREAD_ENDTIME=${shutdown_data_dir}/periodic_thread_last_ended
+SVDRPSEND=/usr/bin/svdrpsend.pl
+
+mesg() {
+ ${SVDRPSEND} mesg "${1}"
+}
+
mesg "periodic thread started"
for HOOK in ${THREAD_DIR}/periodic-*.sh; do