docker-plex-wireguard/init/99_chown_plex_owned_files.sh
ljm42 ab2a1b42dc Update 99_chown_plex_owned_files.sh
* Fixes conditional in "if" statement
* searches for files/groups not owned by "abc"
* works on symbolic links (chown -h)
2015-07-17 22:14:49 -07:00

7 lines
242 B
Bash

#!/bin/bash
if [ -f "/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