First complete
This commit is contained in:
22
src/subsonic/.SRCINFO
Normal file
22
src/subsonic/.SRCINFO
Normal file
@@ -0,0 +1,22 @@
|
||||
# Generated by mksrcinfo v8
|
||||
# Mon May 9 11:24:15 UTC 2016
|
||||
pkgbase = subsonic
|
||||
pkgdesc = A free, web-based media streamer and jukebox.
|
||||
pkgver = 6.0
|
||||
pkgrel = 2
|
||||
url = http://subsonic.org/
|
||||
install = subsonic.install
|
||||
arch = any
|
||||
license = CUSTOM
|
||||
depends = java-runtime-headless
|
||||
conflicts = subsonic
|
||||
backup = var/lib/subsonic/db
|
||||
backup = var/lib/subsonic/subsonic.properties
|
||||
backup = var/lib/subsonic/subsonic.sh
|
||||
source = http://subsonic.org/download/subsonic-6.0-standalone.tar.gz
|
||||
source = subsonic.service
|
||||
md5sums = 5bfb0c06585d087801a6b67c6cb2bd78
|
||||
md5sums = 7cbbb9c8357992385c929e9f05be00be
|
||||
|
||||
pkgname = subsonic
|
||||
|
70
src/subsonic/subsonic.install
Normal file
70
src/subsonic/subsonic.install
Normal file
@@ -0,0 +1,70 @@
|
||||
_homedir=/var/lib/subsonic
|
||||
_playlistdir=/var/playlists
|
||||
|
||||
post_install() {
|
||||
|
||||
getent group subsonic &>/dev/null || groupadd --system subsonic > /dev/null
|
||||
getent passwd subsonic &>/dev/null || useradd --system \
|
||||
--home-dir /var/lib/subsonic \
|
||||
--shell /usr/bin/nologin \
|
||||
--gid subsonic \
|
||||
--groups audio \
|
||||
--comment "Subsonic user" \
|
||||
subsonic > /dev/null
|
||||
passwd --lock subsonic > /dev/null
|
||||
|
||||
fix_permissions
|
||||
echo "*************************************************"
|
||||
echo "* Edit /etc/subsonic.conf to configure subsonic *"
|
||||
echo "*************************************************"
|
||||
|
||||
systemctl daemon-reload
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
if [[ `systemctl is-active subsonic` == 'active' ]]; then
|
||||
systemctl stop subsonic
|
||||
fi
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
getent passwd subsonic &>/dev/null && userdel subsonic >/dev/null
|
||||
getent group subsonic &>/dev/null && groupdel subsonic >/dev/null
|
||||
}
|
||||
|
||||
fix_permissions() {
|
||||
chown -R subsonic:subsonic ${_homedir}
|
||||
chown subsonic:subsonic ${_playlistdir}
|
||||
}
|
||||
|
||||
pre_upgrade() {
|
||||
rm -f /tmp/subsonic-was-active
|
||||
if [[ `systemctl is-active subsonic` == 'active' ]]; then
|
||||
touch /tmp/subsonic-was-active
|
||||
echo "Stopping subsonic"
|
||||
systemctl stop subsonic
|
||||
fi
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
|
||||
if [[ $(vercmp 5.0.beta1 $2) == "1" ]]; then
|
||||
echo "!! Subsonics home dir is now located in /var/lib/subsonic."
|
||||
echo " You will have to move the database located in "
|
||||
echo " /var/subsonic/db to this new location."
|
||||
echo ""
|
||||
echo "!! This package now runs subsonic as the user 'subsonic'."
|
||||
echo " You mightneed to edit permissions for your media folders."
|
||||
rm -f /tmp/subsonic-was-active
|
||||
echo ""
|
||||
echo "!! Not restarting subsonic automatically."
|
||||
echo " You might need to change configs"
|
||||
fi
|
||||
|
||||
if [ -e /tmp/subsonic-was-active ]; then
|
||||
echo "Starting subsonic"
|
||||
systemctl start subsonic
|
||||
rm /tmp/subsonic-was-active
|
||||
fi
|
||||
}
|
12
src/subsonic/subsonic.service
Normal file
12
src/subsonic/subsonic.service
Normal file
@@ -0,0 +1,12 @@
|
||||
[Unit]
|
||||
Description=Subsonic
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=subsonic
|
||||
ExecStart=/var/lib/subsonic/subsonic.sh
|
||||
ExecStop=/bin/kill -15 $MAINPID
|
||||
Type=forking
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Reference in New Issue
Block a user