You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
286 B
14 lines
286 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
9 years ago
|
SUBSONIC_HOME="/Library/Application Support/Libresonic"
|
||
9 years ago
|
|
||
|
chmod oug+rwx "$SUBSONIC_HOME"
|
||
|
chown root:admin "$SUBSONIC_HOME"
|
||
|
|
||
|
chmod oug+rx "$SUBSONIC_HOME/transcode"
|
||
|
chown root:admin "$SUBSONIC_HOME/transcode"
|
||
|
|
||
|
rm -rf "$SUBSONIC_HOME/jetty"
|
||
|
|
||
9 years ago
|
echo Libresonic installation done
|