mirror of
https://github.com/openwrt/packages.git
synced 2025-12-26 15:36:19 +04:00
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>
8 lines
105 B
Bash
8 lines
105 B
Bash
#!/bin/sh
|
|
case "$ACTION" in
|
|
add)
|
|
chgrp -R dvb /dev/dvb/*
|
|
chmod -R g+rwX /dev/dvb/*
|
|
;;
|
|
esac
|