Initialize Git Repository: 'VLMCSD'
VLMCSD / VLMCSD (amd64, bookworm trixie noble, main) (push) Successful in 17s
VLMCSD / VLMCSD (arm64, bookworm trixie noble, main) (push) Successful in 15s

This commit is contained in:
Cantibra
2026-05-12 06:30:24 +02:00
commit a5a3dcfb3f
97 changed files with 25373 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 'vlmcsd' > '/dev/null' 2>&1; then
/usr/sbin/adduser --quiet \
--system \
--home '/nonexistent' \
--shell '/usr/sbin/nologin' \
--no-create-home \
--group \
--disabled-password \
--disabled-login \
'vlmcsd' > '/dev/null' 2>&1
fi
;;
esac