blob: 961c469b914419cf9ad6a49ed97dc50918429996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo 'Archive HDDs are expected at /mnt/archive-hdd'
echo 'Make sure that your archive HDDs are mountable by user vdr'
echo 'for example by adding something like this to your fstab'
echo ''
echo 'UUID=... /mnt/archive-hdd auto defaults,user,noauto 0 0'
echo ''
echo 'To move recordings with vdr add this to your /var/lib/vdr/reccmds.conf'
echo ''
echo 'Archive?: /usr/local/bin/vdr_move_to_hdd.sh'
}
|