1
0
mirror of https://github.com/azlux/dpkg-deb synced 2024-11-23 14:56:10 +00:00
dpkg-deb/webhookd/DEBIAN/postinst

10 lines
339 B
Bash
Executable File

#!/usr/bin/env bash
[ -d /run/systemd/system/ ] && systemctl daemon-reload
[ -d /run/systemd/system/ ] && systemctl enable webhookd
[ "$1" == "upgrade" ] && [ -d /run/systemd/system/ ] && systemctl restart webhookd
[ "$1" == "configure" ] && [ ! -f /etc/webhookd.env ] && echo 'WHD_SCRIPTS="/opt/scripts"' > /etc/webhookd.env
exit 0