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.
13 lines
298 B
13 lines
298 B
#!/bin/bash
|
|
|
|
LIBRESONIC_HOME="/Library/Application Support/Libresonic"
|
|
|
|
chmod oug+rwx "$LIBRESONIC_HOME"
|
|
chown root:admin "$LIBRESONIC_HOME"
|
|
|
|
chmod oug+rx "$LIBRESONIC_HOME/transcode"
|
|
chown root:admin "$LIBRESONIC_HOME/transcode"
|
|
|
|
rm -rf "$LIBRESONIC_HOME/jetty"
|
|
|
|
echo Libresonic installation done
|
|
|