Files
cato-client-bin/cato-client-bin.install
alex e01d6347aa
Some checks failed
bump-and-build / update (push) Failing after 8s
idk
2026-08-21 07:27:50 +02:00

21 lines
467 B
Plaintext
Executable File

post_install() {
ldconfig
update-ca-trust
systemd-sysusers
systemd-tmpfiles --create cato-client-bin.conf
rm -f /var/run/cato-sdp.i /var/run/cato-sdp.o
systemctl daemon-reload
systemctl enable cato-client.service
systemctl try-restart cato-client.service
}
post_upgrade() {
post_install
}
post_remove() {
rm -f /var/run/cato-sdp.i /var/run/cato-sdp.o
systemctl disable --now cato-client.service 2>/dev/null || true
systemctl daemon-reload
}