We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32218d5 commit ead9c0cCopy full SHA for ead9c0c
build/root/install.sh
@@ -74,6 +74,12 @@ cat <<EOF > /tmp/permissions_heredoc
74
chown -R "\${PUID}":"\${PGID}" ${install_paths}
75
chmod -R 775 ${install_paths}
76
77
+# if dvb adapter(s) passed through then set permissions
78
+if [[ -d /dev/dvb ]]; then
79
+ chown -R "${PUID}":"${PGID}" /dev/dvb
80
+ chmod -R 775 /dev/dvb
81
+fi
82
+
83
EOF
84
85
# replace permissions placeholder string with contents of file (here doc)
0 commit comments