1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-14 03:13:54 +02:00
openwrt-packages/multimedia/tvheadend/files/dvb.hotplug
Matthew Hagan b0d810b2e6 tvheadend: correct group permissions for /dev/dvb
Provide group read, write and execute permissions for /dev/dvb, otherwise
adapters will not be accessible from tvheadend.

Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
2022-02-25 06:08:46 -08:00

8 lines
105 B
Bash

#!/bin/sh
case "$ACTION" in
add)
chgrp -R dvb /dev/dvb/*
chmod -R g+rwX /dev/dvb/*
;;
esac