2015-07-03 10:34:26 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2015-07-08 22:36:05 +02:00
|
|
|
|
2015-07-18 21:33:41 -07:00
|
|
|
if [ -d "/config/Library" ]; then
|
2015-07-19 10:55:45 +02:00
|
|
|
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"
|
2015-07-17 22:14:49 -07:00
|
|
|
fi
|
2015-07-19 10:55:45 +02:00
|
|
|
|