siahsd/support/postinst
polyfloyd 7cf2553b99
All checks were successful
Build / build (push) Successful in 48s
Set up CI builds
2025-05-08 21:46:37 +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