deb build framework

This commit is contained in:
2026-04-07 02:43:39 -04:00
parent 8cdacba0d6
commit d0fe37033c
12 changed files with 142 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
set -e
if ! getent passwd navidrome-uploader > /dev/null 2>&1; then
printf "Creating navidrome-uploader user\n"
useradd --system --shell /usr/sbin/nologin --user-group navidrome-uploader
fi
exit 0