Merge pull request #4 from ljm42/patch-1

Update 99_chown_plex_owned_files.sh
pull/5/head
Stian Buch Larsen 10 years ago
commit 6284176fc1

@ -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…
Cancel
Save