Files
Cantibra a5a3dcfb3f
VLMCSD / VLMCSD (amd64, bookworm trixie noble, main) (push) Successful in 17s
VLMCSD / VLMCSD (arm64, bookworm trixie noble, main) (push) Successful in 15s
Initialize Git Repository: 'VLMCSD'
2026-05-12 06:30:24 +02:00

21 lines
528 B
Bash

#!/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