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>
7 lines
105 B
Bash
7 lines
105 B
Bash
#!/bin/sh
|
|
case "$ACTION" in
|
|
add)
|
|
chgrp -R dvb /dev/dvb/*
|
|
chmod -R g+rwX /dev/dvb/*
|
|
;;
|
|
esac
|