mirror of
git://git.proxmox.com/git/pve-firewall.git
synced 2025-01-07 21:17:59 +03:00
3cab23d0eb
both, `override_dh_systemd_enable` and `override_dh_systemd_start` are ignored with current compat level 12, and will become an error in level >= 13, so drop them and use `override_dh_installsystemd` for both of the previous uses. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
14 lines
317 B
Makefile
Executable File
14 lines
317 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_installsystemd:
|
|
dh_installsystemd --name pvefw-logger pvefw-logger.service
|
|
dh_installsystemd --name pve-firewall --no-stop-on-upgrade --no-restart-after-upgrade pve-firewall.service
|
|
|
|
override_dh_installinit:
|