diff --git a/init/99_chown_plex_owned_files.sh b/init/99_chown_plex_owned_files.sh index 51dd64f..4c6ac25 100644 --- a/init/99_chown_plex_owned_files.sh +++ b/init/99_chown_plex_owned_files.sh @@ -2,6 +2,8 @@ if [ -d "/config/Library" ]; then -find "/config/Library" \! -user abc -exec chown -h abc:abc {} \; -find "/config/Library" \! -group abc -exec chown -h abc:abc {} \; +find "/config/Library" \! -user abc -exec chown -hv abc:abc {} \; +find "/config/Library" \! -group abc -exec chown -hv abc:abc {} \; +find "/config/Library/Application Support/Plex Media Server/Plug-ins" fi +