fix video perm error message

This commit is contained in:
aptalca
2021-12-25 14:28:17 -05:00
parent a87e789bc7
commit 39d6a2091e
3 changed files with 3 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ do
groupmod -g "$VIDEO_GID" "$VIDEO_NAME"
fi
usermod -a -G "$VIDEO_NAME" abc
if [ $(stat -c '%A' "${i}" | cut -b 8,9) != "rw" ]; then
if [ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]; then
echo -e "**** The device ${i} does not have group read/write permissions, which might prevent hardware transcode from functioning correctly. To fix it, you can run the following on your docker host: ****\nsudo chmod g+rw ${i}\n"
fi
fi