2015-07-03 10:34:26 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2015-07-08 22:36:05 +02:00
|
|
|
|
2015-07-17 22:32:47 -07:00
|
|
|
if [ -d "/config/Library/Application Support" ]; then
|
2015-07-17 22:14:49 -07:00
|
|
|
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
|