Merge pull request #4 from ljm42/patch-1
Update 99_chown_plex_owned_files.sh
This commit is contained in:
commit
6284176fc1
1 changed files with 4 additions and 3 deletions
|
|
@ -1,6 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
|
||||
if [ -f /config/Library/Application Support]; then
|
||||
find "/config/Library/Application Support" -user plex -exec chown abc:abc {} \;
|
||||
if [ -d "/config/Library/Application Support" ]; then
|
||||
find "/config/Library/Application Support" \! -user abc -exec chown -h abc:abc {} \;
|
||||
find "/config/Library/Application Support" \! -group abc -exec chown -h abc:abc {} \;
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue