File: vdr.config

package info (click to toggle)
vdr 2.6.9-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,512 kB
  • sloc: ansic: 63,196; perl: 966; makefile: 724; sh: 637; python: 86
file content (18 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e

# source debconf lib
. /usr/share/debconf/confmodule

# ask about creating /var/lib/video
if [ ! -e /var/lib/video -a ! -L /var/lib/video -a ! -e /var/lib/video.00 -a ! -L /var/lib/video.00 ]; then
    db_input high vdr/create_video_dir || true
    db_go
fi

# ask about dvb card type
db_input high vdr/select_dvb_card || true
db_go

exit 0