Init Navidrome job
This commit is contained in:
parent
4295ac6f1d
commit
8043668fa2
1 changed files with 69 additions and 0 deletions
69
cfg/jobs/navidrome.run
Normal file
69
cfg/jobs/navidrome.run
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
#!/bin/env bash
|
||||||
|
# Upstream doc: https://www.navidrome.org/docs/installation/linux/
|
||||||
|
set -euxo pipefail
|
||||||
|
|
||||||
|
IMAGE="ubuntu/22.04/cloud"
|
||||||
|
DIST="${IMAGE%%/*/*}"
|
||||||
|
VER="${IMAGE#*/}"
|
||||||
|
VER="${VER%/*}"
|
||||||
|
VER="${VER//./-}"
|
||||||
|
UPSTREAM_VER="0.50.2"
|
||||||
|
UPSTREAM_VER_DASH="${UPSTREAM_VER//./-}"
|
||||||
|
UPSTREAM_NAME="navidrome"
|
||||||
|
SERIAL="5esh"
|
||||||
|
CNAME="$UPSTREAM_NAME-$UPSTREAM_VER_DASH-$SERIAL-$DIST-$VER"
|
||||||
|
ALIAS="$UPSTREAM_NAME-$UPSTREAM_VER-$SERIAL"
|
||||||
|
|
||||||
|
cd $WORKSPACE
|
||||||
|
incus launch images:$IMAGE $CNAME
|
||||||
|
|
||||||
|
# Wait network
|
||||||
|
sleep 5
|
||||||
|
|
||||||
|
# Navidrome
|
||||||
|
incus exec $CNAME -- mkdir /etc/esh
|
||||||
|
incus exec $CNAME -- apt update
|
||||||
|
incus exec $CNAME -- apt upgrade -y
|
||||||
|
incus exec $CNAME -- apt install -y --no-install-recommends ffmpeg wget
|
||||||
|
incus exec $CNAME -- useradd -m -s /sbin/nologin -d /var/lib/navidrome navidrome
|
||||||
|
incus exec $CNAME -- install -d -o navidrome -g navidrome /opt/navidrome
|
||||||
|
incus exec $CNAME -- wget "https://github.com/navidrome/navidrome/releases/download/v${UPSTREAM_VER}/navidrome_${UPSTREAM_VER}_linux_amd64.tar.gz" -O /tmp/Navidrome.tar.gz
|
||||||
|
incus exec $CNAME -- tar -xvzf /tmp/Navidrome.tar.gz -C /opt/navidrome/
|
||||||
|
incus exec $CNAME -- chown -R navidrome:navidrome /opt/navidrome
|
||||||
|
incus file push navidrome.toml $CNAME/etc/esh/
|
||||||
|
incus file push setup.sh $CNAME/usr/local/bin/
|
||||||
|
incus file push navidrome.service $CNAME/etc/systemd/system/
|
||||||
|
|
||||||
|
# Syncthing
|
||||||
|
incus exec $CNAME -- apt install syncthing
|
||||||
|
incus exec $CNAME -- cp /lib/systemd/system/syncthing\@.service /etc/systemd/system/
|
||||||
|
incus exec $CNAME -- sed -i \
|
||||||
|
's/\(ExecStart=\/usr\/bin\/syncthing serve --no-browser --no-restart --logflags=0\)/\1 --gui-address=0.0.0.0:8384/' \
|
||||||
|
/etc/systemd/system/syncthing\@.service
|
||||||
|
|
||||||
|
# Clean
|
||||||
|
incus exec $CNAME -- \
|
||||||
|
rm -rf \
|
||||||
|
/etc/machine-id \
|
||||||
|
/var/cache/apt \
|
||||||
|
/var/log/journal
|
||||||
|
|
||||||
|
# Publish
|
||||||
|
incus stop $CNAME
|
||||||
|
incus config metadata show $CNAME > metadata.yaml
|
||||||
|
# Get the current Unix timestamp
|
||||||
|
current_timestamp=$(date +%s)
|
||||||
|
# Calculate expiry date as current timestamp + 1 week (604800 seconds)
|
||||||
|
expiry_date=$(($current_timestamp + 604800))
|
||||||
|
# Update metadata values
|
||||||
|
sed -i \
|
||||||
|
-e "s/creation_date: .*/creation_date: $current_timestamp/" \
|
||||||
|
-e "s/expiry_date: .*/expiry_date: $expiry_date/" \
|
||||||
|
-e "s#description: .*#description: $UPSTREAM_NAME v$UPSTREAM_VER on $IMAGE release $SERIAL#" \
|
||||||
|
-e "s/name: .*/name: $CNAME/" \
|
||||||
|
-e "s/serial: .*/serial: $SERIAL/" \
|
||||||
|
metadata.yaml
|
||||||
|
|
||||||
|
incus config metadata edit $CNAME < metadata.yaml
|
||||||
|
incus publish $CNAME --alias $ALIAS --public
|
||||||
|
incus rm $CNAME
|
Loading…
Add table
Reference in a new issue