Initialize Git Repository: 'WSDD'
WSDD / WSDD (amd64, cicd.any, bookworm trixie noble, main) (push) Successful in 12s
WSDD / WSDD (arm64, cicd.any, bookworm trixie noble, main) (push) Successful in 17s

This commit is contained in:
Cantibra
2026-05-04 21:22:11 +02:00
commit 2181927a60
19 changed files with 3013 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/sh
set -e
set -u
case "${1}" in
install)
if ! /usr/bin/getent passwd 'wsdd' > '/dev/null' 2>&1; then
/usr/sbin/adduser --quiet \
--system \
--home '/run/wsdd' \
--shell '/usr/sbin/nologin' \
--no-create-home \
--group \
--disabled-password \
--disabled-login \
'wsdd' > '/dev/null' 2>&1
fi
;;
esac