501aa0eff8
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
7 lines
139 B
Bash
Executable file
7 lines
139 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DIR=$(dirname $0)
|
|
|
|
chown -R :mpd "$DIR"
|
|
find "$DIR" -type d -exec chmod g=rx {} \;
|
|
find "$DIR" -type f -exec chmod g=r {} \;
|