aboutsummaryrefslogtreecommitdiff
blob: a2b483e896c1ea1b8bc5ba4e3f06243b7cc06fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
# ChangeLog for gentoo-vdr-scripts
# $Id$

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  changed makefile to only one install-target

  13 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown:
  Corrected typo in description of BLOCK_SHUTDOWN_INTERVALS, reported by
  Roland May <tinitus@web.de>.

  13 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
  Modified parameter MUTE, to act like described in comment, reported by
  Roland May <tinitus@web.de>.

  11 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdr-bg.sh, usr/lib/vdr/bin/vdrrecord-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  Better quoting of . Better debug support.

  11 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/post-stop-05-plugins.sh,
  usr/lib/vdr/rcscript/post-start-05-plugins.sh,
  usr/lib/vdr/rcscript/pre-start-10-chuid.sh,
  usr/lib/vdr/rcscript/pre-stop-10-watchdog.sh,
  usr/lib/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/lib/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh,
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh,
  usr/lib/vdr/rcscript/pre-start-45-nptl-check.sh,
  usr/lib/vdr/rcscript/pre-start-45-utf8-check.sh,
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/lib/vdr/rcscript/post-start-90-watchdog.sh,
  usr/lib/vdr/rcscript/pre-stop-95-plugins.sh,
  usr/lib/vdr/rcscript/pre-start-95-plugins.sh:
  Every addon now returns a proper exitcode.

  11 Jun 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Startscript now soft-depends on coldplug to ensure it started before.

  10 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-40-time.sh, usr/lib/vdr/bin/vdr-bg.sh,
  usr/lib/vdr/bin/vdrrecord-gate.sh, usr/lib/vdr/bin/vdrshutdown-gate.sh:
  Fork all processes started by vdr to background. Fixed some 1 line bugs.

  10 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/shutdown/pre-shutdown-40-time.sh,
  usr/lib/vdr/shutdown/pre-shutdown-10-check-allowed.sh ->
  usr/lib/vdr/shutdown/pre-shutdown-10-check-enabled.sh,
  etc/conf.d/vdr.shutdown, +usr/lib/vdr/inc/time.sh:
  Added option to forbid shutdowns in specified time-intervals. Renamed one
  script

  09 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/post-start-50-svdrp.sh,
  usr/lib/vdr/rcscript/pre-start-98-wait-conditions.sh, etc/init.d/vdr,
  usr/lib/vdr/inc/rc-functions.sh:
  Changed error-code handling. Changed message for timeout at vdr-start.

*gentoo-vdr-scripts-0.3.4 (31 Mai 2006)

  31 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-45-utf8-check.sh, etc/conf.d/vdr:
  new utf8-wipeout strategy, relocated IR-setting in conf-file.

  29 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/wakeup-acpi.sh:
  Added an explicit warning about a missing /proc/acpi/alarm.

*gentoo-vdr-scripts-0.3.3 (17 Mai 2006)

  17 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  corrected invalid use of < and > to compare integers

  17 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-05-time-calculations.sh:
  Do not abort shutdown when there is no next timer defined. Fix by PanamaJack
  from vdr-portal.de.

*gentoo-vdr-scripts-0.3.2 (13 Mai 2006)

  13 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  -usr/lib/vdr/shutdown/pre-shutdown-05-fixed-wakeup.sh,
  +usr/lib/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  Catch running timer and block shutdown in that case

  12 May 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/lib/vdr/inc/message-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  Better handling of vdr-start-log. Explicitly state now that no errors occured.

  10 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown:
  Corrected reference to other shutdown setting in comment.

  10 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/shutdown/pre-shutdown-05-fixed-wakeup.sh,
  etc/conf.d/vdr.shutdown:
  Added code for daily wakeup. Code by Michael Brakemeier
  <michael@brakemeier.de>.

  10 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  Added code to block shutdown when debugging.

  10 May 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/lib/vdr/inc/functions.sh, usr/lib/vdr/inc/message-functions.sh:
  Fixed writing vdr-start-log

  09 May 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Changed "need net" to "use net" to not kill vdr when shutting down the
  network. Suggested by Martin Brodbeck <Martin@brodbeck-online.net>.

*gentoo-vdr-scripts-0.3.1 (03 Mai 2006)

  02 May 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  Corrected reading of VDR-version, reported by Harri Kukkonen
  <harrik@gmail.com>, use APIVERSION for newer vdrs

*gentoo-vdr-scripts-0.3.0 (21 Mar 2006)

  21 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/lib/vdr/bin/vdrshutdown-gate.sh:
  made shutdown retry time configurable

  18 Mar 2006; Matthias Schwarzott <zzam@gentoo.org> +README.shutdown:
  added description of shutdown-addon-modules

  15 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh,
  +usr/lib/vdr/rcscript/post-start-92-messages.sh,
  +etc/vdr/commands/commands.system.conf,
  +etc/vdr/commands/commands.system.conf.de, usr/lib/vdr/inc/functions.sh,
  +usr/lib/vdr/inc/message-functions.sh,
  usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  First version of log-management

  15 Mar 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile, README:
  added packaging make-target dist

  15 Mar 2006; Joerg Bornkessel <hd_brummy@gentoo.org>
  usr/lib/vdr/inc/plugin-functions.sh:
  set to higher warn level in skip_plugin, on suggestion by M.Guenther

  15 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/plugin-functions.sh:
  use consistent sort order for checksums - use existing vdr checksum if possible

  14 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  added check for mismatching patchlevel (=wrong header files) of plugins

*gentoo-vdr-scripts-0.2.4 (05 Mar 2006)

  04 Mar 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile,
  +etc/vdr/commands/commands.custom.conf.de:
  added example for translated commands-file

  04 Mar 2006; Matthias Schwarzott <zzam@gentoo.org> +etc/conf.d/vdr.cd-dvd:
  Added config-file for cd&dvd devices used by some plugins

  02 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh, TODO, etc/conf.d/vdr:
  Set default log-level to 1

  28 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  cosmetics on shutdown-code

  28 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/rc-functions.sh:
  do not print message about not defined function in addon

  28 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/language-functions.sh:
  only read setup.conf if existing

  28 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-45-nptl-check.sh:
  changed debug-message for NPTL-off to be less confusing

  22 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh, usr/lib/vdr/inc/functions.sh,
  usr/lib/vdr/inc/rc-functions.sh, usr/lib/vdr/inc/shutdown-functions.sh:
  changed inclusion of caps

  21 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/post-stop-05-plugins.sh,
  usr/lib/vdr/rcscript/post-start-05-plugins.sh,
  usr/lib/vdr/rcscript/pre-stop-95-plugins.sh,
  usr/lib/vdr/rcscript/pre-start-95-plugins.sh,
  +usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  copied some plugin-load-functions to its own file

  21 Feb 2006; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr:
  added correction of comments in conf-file already added to 0.2.2 ebuild

  21 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh, etc/init.d/vdr,
  usr/lib/vdr/bin/vdrrecord-gate.sh, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh,
  usr/lib/vdr/inc/commands-functions.sh, +usr/lib/vdr/inc/functions.sh:
  created loader for shell include files

  12 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh:
  replaced /usr/bin/sed by /bin/sed

  31 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-10-chuid.sh:
  corrected error in handling of chuid-option for newer vdr-versions

*gentoo-vdr-scripts-0.2.3 (31 Jan 2006)

  31 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  set default shutdown retry time to 5min

  21 Jan 2006; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr:
  corrected wrong comment in config-file

  09 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/rcscript/pre-start-10-chuid.sh, TODO, etc/init.d/vdr:
  enable use of chuid integrated into vdr-1.3.38

  09 Jan 2006; Matthias Schwarzott <zzam@gentoo.org> README.shutdown-jobs,
  +README.vdrcaps, TODO:
  documentation updates

*gentoo-vdr-scripts-0.2.2 (07 Jan 2006)

  07 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/commands-functions.sh,
  +usr/lib/vdr/inc/language-functions.sh:
  commands can now be localized

*gentoo-vdr-scripts-0.2.1 (06 Jan 2006)

  06 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  show message on OSD when doing shutdown

  06 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/commands-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  some small fixes for changes before

  06 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh,
  +usr/lib/vdr/inc/commands-functions.sh:
  moved commands-file handling into seperate file

  05 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh, Makefile,
  etc/init.d/vdr, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh,
  +usr/lib/vdr/inc/shutdown-functions.sh,
  -usr/lib/vdr/rcscript/functions-shutdown.sh
  +usr/lib/vdr/inc/rc-functions.sh
  --usr/lib/vdr/rcscript/functions.sh:
  moved include-files

  05 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh:
  Make it clearer how to get more shutdown/wakeup-methods.

  05 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  some work on shutdown / periodic-thread

*gentoo-vdr-scripts-0.2 (03 Jan 2006)

  03 Jan 2006; Matthias Schwarzott <zzam@gentoo.org> +README.shutdown-jobs,
  TODO:
  a bit cleanup of documentation

  03 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown:
  added new reboot-script to config-file

  03 Jan 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile,
  +etc/init.d/wakeup-reboot-halt, usr/lib/vdr/shutdown/shutdown-reboot.sh:
  new method to do reboot without modifying bootmanager

*gentoo-vdr-scripts-0.2_alpha6 (31 Dec 2005)

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/periodic-50-epgscan.sh,
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  +etc/conf.d/vdr.periodic.epgscan, -etc/conf.d/vdr.shutdown.epgscan,
  +etc/conf.d/vdr.periodic.general, etc/conf.d/vdr.shutdown:
  changed configuration-settings for periodic jobs

  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

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  code cosmetics

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  base time-calculation on thread end-time, not start-time

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  now starting shutdown at end of periodic-thread, can now force shutdown when
  thread runs

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  small changes to time-calculations

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  implement new technique of shutdown-retry via new patched svdrp-command down

*gentoo-vdr-scripts-0.2_alpha5 (29 Dec 2005)

  29 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh:
  changed date-specification a bit to work with newest coreutils

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/shutdown/periodic-50-epgscan.sh, Makefile,
  +etc/conf.d/vdr.shutdown.epgscan:
  added example periodic-function

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-10-check-allowed.sh,
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
  +usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  etc/conf.d/vdr.shutdown, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  +usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  first try with periodic-thread at shutdown

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  corrected bug with wrong call order of functions in stop-script

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh, Makefile, TODO,
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh,
  usr/lib/vdr/rcscript/functions-shutdown.sh:
  made extra tmp-directores for shutdown and config-file-merging

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  added chown to Makefile

  27 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh:
  Changed disabling wakeup, problem reported by ilmusy from vdr-portal.de

  27 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh:
  added more shutdown-blockers

  24 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh:
  added dvdauthor to list of shutdown-blocking programs

*gentoo-vdr-scripts-0.2_alpha4 (21 Dec 2005)

  20 Dec 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added warning on osd when vdr was restarted by watchdog

  20 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh,
  usr/lib/vdr/shutdown/wakeup-nvram.sh:
  can remember reboot-setting even if shutdown aborted

  20 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/rcscript/pre-start-45-utf8-check.sh, TODO:
  added utf8-workaround

  29 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/rcscript/post-stop-05-plugins.sh,
  +usr/lib/vdr/rcscript/post-start-05-plugins.sh,
  usr/lib/vdr/rcscript/pre-stop-10-watchdog.sh,
  usr/lib/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/lib/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh,
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh,
  usr/lib/vdr/rcscript/pre-start-45-nptl-check.sh,
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/lib/vdr/rcscript/post-start-50-svdrp.sh,
  usr/lib/vdr/rcscript/post-start-90-watchdog.sh,
  +usr/lib/vdr/rcscript/pre-stop-95-plugins.sh,
  +usr/lib/vdr/rcscript/pre-start-95-plugins.sh,
  +usr/lib/vdr/rcscript/pre-start-98-wait-conditions.sh, etc/init.d/vdr,
  usr/lib/vdr/rcscript/functions.sh:
  created functions called in each addon

  25 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/shutdown-reboot.sh:
  corrected bootmanager handling at reboot

*gentoo-vdr-scripts-0.2_alpha3 (15 Nov 2005)

  15 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh:
  Enable force of shutdown for running programs

  15 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
  Made config-file nicer and changed default for INTERNAL_WATCHDOG to 60s.

  15 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-10-check-allowed.sh,
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
  usr/lib/vdr/shutdown/pre-shutdown-30-check-logins.sh,
  etc/conf.d/vdr.shutdown, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/rcscript/functions-shutdown.sh:
  added possibility to force a shutdown

  14 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-10-check-allowed.sh,
  usr/lib/vdr/shutdown/pre-shutdown-30-check-logins.sh, TODO,
  etc/conf.d/vdr.shutdown, usr/lib/vdr/shutdown/shutdown-reboot.sh:
  Made shutdown-config nicer, added special grub-option, check for logins at
  every shutdown.

  14 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh:
  Corrected typo in variable name.

*gentoo-vdr-scripts-0.2_alpha2 (05 Nov 2005)

  05 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
  added config-option to give special parameters to vdr

  05 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/rcscript/pre-start-45-nptl-check.sh, etc/conf.d/vdr,
  etc/init.d/vdr:
  added detection of nptl-only systems for thread-handling

  04 Nov 2005; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr,
  etc/conf.d/vdr.shutdown:
  A bit better documentation of config files.

  31 Oct 2005; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/lib/vdr/shutdown/wakeup-nvram.sh:
  Added config-variable to be used for nvram-options not available otherwise.

*gentoo-vdr-scripts-0.2_alpha1 (29 Oct 2005)

  25 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added options to switch to used terminal and to force a vdr-start as root

  24 Oct 2005; Matthias Schwarzott <zzam@gentoo.org>
  etc/init.d/vdr,usr/lib/vdr/rcscript/pre-start-30-parameter.sh:
  removed call of env
  moved terminal-handling completely to /etc/init.d/vdr
  use openvt to start with terminal

*gentoo-vdr-scripts-0.1 (21 Oct 2005)

  20 Oct 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdr-bg.sh:
  added script to start commands in background

  20 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Revert last change, as it has problems with terminal-option.

  20 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh:
  Use start-stop-daemon option --background instead of &.

*gentoo-vdr-scripts-0.1_alpha10 (19 Oct 2005)

  19 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr,
  usr/lib/vdr/rcscript/post-start-50-svdrp.sh:
  added config-setting for hostname to use for svdrp startup check

  18 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> TODO,
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh,etc/init.d/vdr:
  TERMINAL-config-option works now.

*gentoo-vdr-scripts-0.1_alpha9 (12 Oct 2005)

  12 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Preparation for better retry of failed shutdown.

  11 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  more cosmetic changes

  11 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Small code cosmetics for shutdown, and one bugfix to always use
  default-wakeup-method acpi when noting is set.

*gentoo-vdr-scripts-0.1_alpha8 (08 Oct 2005)

  08 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added test for logged in users when shutdown

  08 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added missing config-file-entry

*gentoo-vdr-scripts-0.1_alpha7 (08 Oct 2005)

  08 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  a bit cleanup for watchdog

  07 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  renamed wakeup files

  06 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added set of record-scripts

  03 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  test for working wakeup at start of vdr

*gentoo-vdr-scripts-0.1_alpha6 (03 Oct 2005)

  03 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Split shutdown in multiple files

*gentoo-vdr-scripts-0.1_alpha5 (02 Oct 2005)

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added test for good sudoers-entry

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  working wakeup time setting

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Install shutdown config file

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  install shutdown control scripts

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog,
  etc/conf.d/vdr, +etc/conf.d/vdr.shutdown:
  first try of shutdown-scripts

  12 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Bugfixed parameter handling.

*gentoo-vdr-scripts-0.1_alpha4 (12 Sep 2005)

  11 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  enables >=vdr-1.3.32 to use vfat runtime option

  09 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  create missing video directory at start

  09 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  moved default video directory to /var/vdr/video

*gentoo-vdr-scripts-0.1_alpha3 (09 Sep 2005)

  07 Sep 2005; Matthias Schwarzott <zzam@gentoo.org>:
  made time calculation for acpi more correct

  31 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  fixed typo

  31 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  added setting of startup volume and channel

  29 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  small cleanup of config file

  25 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  added vdr option --terminal

  18 Aug 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  external watchdog per default off

  18 Aug 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added options for setting infra-red control type

  17 Aug 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  changed comments and config-file-settings for watchdogs to make the
  difference intern vdr watchdog - extern watchdog more clear

*gentoo-vdr-scripts-0.1_alpha2 (14 Aug 2005)

  14 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  enabled watchdog to automagically find and reload dvb driver modules

  14 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  added watchdog handling
  introduced debug-level, to hide some output messages

  13 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  corrected creation of commands.conf

*gentoo-vdr-scripts-0.1_alpha1 (12 Aug 2005)

  12 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  added script for creation of commands.conf
  and reccmds.conf files

  27 Jul 2005; Matthias Schwarzott <zzam@gentoo.org>:
  First created package of scripts.
  Scripts are from either me or
  imported from gentoo.de repository