siahsd/support/postinst
polyfloyd b2bc0c410d
Some checks failed
Build / build (push) Failing after 1m3s
Set up CI builds
2025-05-08 14:57:34 +02:00

14 lines
307 B
Bash
Executable file

#!/bin/sh
if ! id -u siahsd >/dev/null 2>&1; then
useradd \
--no-user-group \
--system \
--create-home \
--home-dir /var/lib/siahsd \
--shell /usr/sbin/nologin siahsd \
fi
systemctl daemon-reload
systemctl restart siahsd.service
systemctl enable siahsd.service