certmanager updates

This commit is contained in:
Олег Бородин
2024-08-12 17:41:49 +02:00
parent 21d64fd482
commit 6a3290b9ac
19 changed files with 257 additions and 18 deletions

7
debian/prerm vendored Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh -e
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
# Package removal, not upgrade
systemctl --no-reload disable certmanagerd.service > /dev/null 2>&1 || :
systemctl stop certmanagerd.service > /dev/null 2>&1 || :
fi