debmaker/ressources/picapport/rootfs/DEBIAN/postinst
2023-09-02 22:51:34 +02:00

15 lines
346 B
Bash
Executable file

#!/bin/bash
APP=picapport
id ${APP} &> /dev/null || useradd ${APP} -r -s /bin/false -md /var/lib/${APP}
chown -R ${APP}:${APP} /var/lib/${APP}/
if [[ $(systemctl list-unit-files | grep ${APP}.services) -eq 0 ]]
then
systemctl daemon-reload
if [ "$(systemctl is-active ${APP}.service)" != "inactive" ]
then
systemctl restart ${APP}
fi
fi