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
|
|
|
|
|
find "/config/Library" \! -user abc -exec chown -h abc:abc {} \;
|
|
|
|
|
find "/config/Library" \! -group abc -exec chown -h abc:abc {} \;
|
|
|
|
|
chmod -R ug+w "/config/Library"
|
2015-07-17 22:14:49 -07:00
|
|
|
fi
|