siahsd/support/postinst
polyfloyd 66d1619707
All checks were successful
Build / build (push) Successful in 1m18s
deb: Fix stray \
2025-05-09 14:13:45 +02:00

14 lines
305 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