Fix cargo deb missing #DEBHELPER# variable
All checks were successful
Run Tests on Code / run-tests (push) Successful in 11s
Build and Release Binary File / test (push) Successful in 12s
Build and Release Binary File / build (push) Successful in 26s
Build and Release Binary File / upload-release (push) Successful in 11s

This commit is contained in:
Neshura 2023-12-29 01:26:09 +01:00
parent 7738c8b366
commit b727a3714e
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
3 changed files with 12 additions and 3 deletions

5
debian/postinst vendored
View file

@ -1,5 +1,8 @@
#!/bin/sh
set -e
#DEBHELPER#
# Also enable User Service
# Automatically added by cargo-deb
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if deb-systemd-helper --user debian-installed cloudflare-dns-updater.service; then

5
debian/postrm vendored
View file

@ -1,5 +1,8 @@
#!/bin/sh
set -e
#DEBHELPER#
# Also enable User Service
# Automatically added by cargo-deb
if [ -d /run/systemd/system ]; then
USER="$(who | head -1 | awk '{print $1;}')"

5
debian/prerm vendored
View file

@ -1,5 +1,8 @@
#!/bin/sh
set -e
#DEBHELPER#
# Also enable User Service
# Automatically added by cargo-deb
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
USER="$(who | head -1 | awk '{print $1;}')"