vdr/vdr/debian vdr.NEWS vdr.postinst
Thomas Schmidt
pkg-vdr-dvb-changes@lists.alioth.debian.org
Sat, 29 May 2004 19:18:36 +0000
Update of /cvsroot/pkg-vdr-dvb/vdr/vdr/debian
In directory haydn:/tmp/cvs-serv29429/vdr/vdr/debian
Modified Files:
vdr.NEWS vdr.postinst
Log Message:
added comments to most of the changes in vdr 1.2.6-4; do not move epg.data in postinst, to normally should not be under /etc/vdr nor under /var/lib/vdr, this file should exist in the video-dir only
Index: vdr.NEWS
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/vdr.NEWS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- vdr.NEWS 29 May 2004 18:00:51 -0000 1.1
+++ vdr.NEWS 29 May 2004 19:17:34 -0000 1.2
@@ -1,7 +1,25 @@
vdr (1.2.6-4) unstable; urgency=low
- In this Release, we changed the path of some non-static conf-files from
- /etc/vdr to /var/lib/vdr, these files will be moved by the postinst-script
- to the right location.
+ This is the first release from the VDR and DVB Packaging Team
+ <pkg-vdr-dvb-devel@lists.alioth.debian.org>
+ Many thanks to Tobias Grimm and Thomas Günther for the various improvements
+ of the package.
+
+ In this Release, we changed the path of the conf-files to /var/lib/vdr,
+ static conf-files will still be under /etc/vdr, and symlinked to
+ /var/lib/vdr.
+ If you allready have non-static files (channels.conf, remote.conf,
+ setup.conf and timers.conf), these files will be moved by the
+ postinst-script to /var/lib/vdr.
+
+ The most important change in this release is the new init-system of vdr,
+ which was taken from c't-vdr, a woody-based distribution, optimized for vdr.
+ - Plugins are not any longer loaded via /etc/default/vdr, instead of this,
+ every installed plugin will be loaded automatically. The order of the
+ plugins can be configured via /etc/vdr/plugins/order.conf.
+ - The commands.conf and the reccmds.conf files will be auto-generated
+ by the init-script for better integration of vdr-addons.
+ If you allready have a commands.conf or reccmds.conf, you should move it
+ to /etc/vdr/command-hooks/{commands|reccmds}.custom.conf .
-- Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de> Sat, 29 May 2004 19:43:49 +0200
Index: vdr.postinst
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/vdr.postinst,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- vdr.postinst 29 May 2004 18:19:05 -0000 1.7
+++ vdr.postinst 29 May 2004 19:17:34 -0000 1.8
@@ -32,7 +32,7 @@
. /usr/share/debconf/confmodule
# move cfg-files from /etc/vdr to /var/lib/vdr
- for FILE in epg.data remote.conf setup.conf timers.conf; do
+ for FILE in remote.conf setup.conf timers.conf; do
if [ -e /etc/vdr/$FILE -a ! -e /var/lib/vdr/$FILE ]; then
printf "Note: Moving /etc/vdr/$FILE to /var/lib/vdr/$FILE\n"
mv /etc/vdr/$FILE /var/lib/vdr/$FILE