Files
Traefik/traefik/DEBIAN/preinst
Cantibra b733ed2f8f
All checks were successful
Traefik / Traefik (amd64, bookworm trixie noble, main) (push) Successful in 1m27s
Traefik / Traefik (arm64, bookworm trixie noble, main) (push) Successful in 1m21s
Initialize Git Repository: 'Traefik'
2026-03-19 14:16:30 +01:00

21 lines
530 B
Bash

#!/usr/bin/sh
set -e
set -u
case "${1}" in
install)
if ! /usr/bin/getent passwd 'traefik' > '/dev/null' 2>&1; then
/usr/sbin/adduser --quiet \
--system \
--home '/nonexistent' \
--shell '/usr/sbin/nologin' \
--no-create-home \
--group \
--disabled-password \
--disabled-login \
'traefik' > '/dev/null' 2>&1
fi
;;
esac