mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
build: add packages for deb and rpm to release (#3202)
* support packing deb/rpm/archlinux * .-. * initial test * fix postinstall, remove execstop * bash -> sh, create toml manually if it doesn't exist (thanks debian) * don't forget that newline * postrm * comments, contrib -> packaging/linux * contrib > packaging in .goreleaser * actually add toml * openrc/sysv templates * add apk. nothing else yet * wait, we have a ntive uninstall * fix: merge errors, move packaging to release * chore: remove old goreleaser conf * ci: remove `release` dependency on `docker push` * ci: fix release version * ci: upload packages * ci: try to fix json file list * ci: replace the json file list with a txt artifact * postremove -> preremove, skip install/remove error * actually do preremove * better preremove * ci: fix * ci: fix? * ci: clean-up * ci: try to change labels and filenames * ci: fix? * ci: fix? * ci: add `make package` target * ci: make labels more readable hope it doesn't break the pipeline again * build: remove alpine and archlinux packages, for now. --------- Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
69e2a6d620
commit
154e13f7c9
10 changed files with 235 additions and 10 deletions
|
@ -33,6 +33,58 @@ checksum:
|
|||
snapshot:
|
||||
version_template: "{{ .Tag }}-SNAPSHOT"
|
||||
|
||||
nfpms:
|
||||
- id: navidrome
|
||||
package_name: navidrome
|
||||
|
||||
homepage: https://navidrome.org
|
||||
description: |-
|
||||
🎧☁ Your Personal Streaming Service
|
||||
|
||||
maintainer: Deluan Quintão <deluan at navidrome.org>
|
||||
|
||||
license: GPL-3.0
|
||||
formats:
|
||||
- deb
|
||||
- rpm
|
||||
|
||||
dependencies:
|
||||
- ffmpeg
|
||||
|
||||
suggests:
|
||||
- mpv
|
||||
|
||||
overrides:
|
||||
rpm:
|
||||
dependencies:
|
||||
- "(ffmpeg or ffmpeg-free)"
|
||||
|
||||
contents:
|
||||
- src: release/linux/navidrome.toml
|
||||
dst: /etc/navidrome/navidrome.toml
|
||||
type: "config|noreplace"
|
||||
file_info:
|
||||
mode: 0644
|
||||
owner: navidrome
|
||||
group: navidrome
|
||||
|
||||
- dst: /var/lib/navidrome
|
||||
type: dir
|
||||
file_info:
|
||||
owner: navidrome
|
||||
group: navidrome
|
||||
|
||||
- dst: /opt/navidrome/music
|
||||
type: dir
|
||||
file_info:
|
||||
owner: navidrome
|
||||
group: navidrome
|
||||
|
||||
scripts:
|
||||
preinstall: "release/linux/preinstall.sh"
|
||||
postinstall: "release/linux/postinstall.sh"
|
||||
preremove: "release/linux/preremove.sh"
|
||||
|
||||
release:
|
||||
draft: true
|
||||
mode: append
|
||||
|
|
2
release/linux/navidrome.toml
Normal file
2
release/linux/navidrome.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
DataFolder = "/var/lib/navidrome"
|
||||
MusicFolder = "/opt/navidrome/music"
|
25
release/linux/postinstall.sh
Normal file
25
release/linux/postinstall.sh
Normal file
|
@ -0,0 +1,25 @@
|
|||
#!/bin/sh
|
||||
|
||||
# It is possible for a user to delete the configuration file in such a way that
|
||||
# the package manager (in particular, deb) thinks that the file exists, while it is
|
||||
# no longer on disk. Specifically, doing a `rm /etc/navidrome/navidrome.toml`
|
||||
# without something like `apt purge navidrome` will result in the system believing that
|
||||
# the file still exists. In this case, during isntall it will NOT extract the configuration
|
||||
# file (as to not override it). Since `navidrome service install` depends on this file existing,
|
||||
# we will create it with the defaults anyway.
|
||||
if [ ! -f /etc/navidrome/navidrome.toml ]; then
|
||||
printf "No navidrome.toml detected, creating in postinstall\n"
|
||||
printf "DataFolder = \"/var/lib/navidrome\"\n" > /etc/navidrome/navidrome.toml
|
||||
printf "MusicFolder = \"/opt/navidrome/music\"\n" >> /etc/navidrome/navidrome.toml
|
||||
fi
|
||||
|
||||
postinstall_flag="/var/lib/navidrome/.installed"
|
||||
|
||||
if [ ! -f "$postinstall_flag" ]; then
|
||||
# The primary reason why this would fail is if the service was already installed AND
|
||||
# someone manually removed the .installed flag. In this case, ignore the error
|
||||
navidrome service install --user navidrome --working-directory /var/lib/navidrome --configfile /etc/navidrome/navidrome.toml || :
|
||||
touch "$postinstall_flag"
|
||||
fi
|
||||
|
||||
|
6
release/linux/preinstall.sh
Executable file
6
release/linux/preinstall.sh
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
if ! getent passwd navidrome > /dev/null 2>&1; then
|
||||
printf "Creating default Navidrome user\n"
|
||||
useradd --home-dir /var/lib/navidrome --create-home --system --user-group navidrome
|
||||
fi
|
30
release/linux/preremove.sh
Normal file
30
release/linux/preremove.sh
Normal file
|
@ -0,0 +1,30 @@
|
|||
#!/bin/sh
|
||||
|
||||
action=$1
|
||||
|
||||
remove() {
|
||||
postinstall_flag="/var/lib/navidrome/.installed"
|
||||
|
||||
if [ -f "$postinstall_flag" ]; then
|
||||
# If this fails, ignore it
|
||||
navidrome service uninstall || :
|
||||
rm "$postinstall_flag"
|
||||
|
||||
printf "The following may still be present (especially if you have not done a purge):\n"
|
||||
printf "1. /etc/navidrome/navidrome.toml (configuration file)\n"
|
||||
printf "2. /var/lib/navidrome (database/cache)\n"
|
||||
printf "3. /opt/navidrome (default location for music)\n"
|
||||
printf "4. The Navidrome user (user name navidrome)\n"
|
||||
fi
|
||||
}
|
||||
|
||||
case "$action" in
|
||||
"1" | "upgrade")
|
||||
# For an upgrade, do nothing
|
||||
# Leave the service file untouched
|
||||
# This is relevant for RPM/DEB-based installs
|
||||
;;
|
||||
*)
|
||||
remove
|
||||
;;
|
||||
esac
|
Loading…
Add table
Add a link
Reference in a new issue