core-admin/linux/systemd/Makefile
Marek Marczykowski-Górecki 5e89b23288
firewall: use asyncio's call_later instead of systemd to reload rules
When some expiring rules are present, it is necessary to reload firewall
when those rules expire. Previously systemd timer was used to trigger
this action, but since we have own daemon now, it isn't necessary
anymore - use this daemon for that.
Additionally automatically removing expired rules was completely broken
in R4.0.

Fixes QubesOS/qubes-issues#1173
2018-02-07 02:48:11 +01:00

15 lines
434 B
Makefile

UNITDIR ?= /usr/lib/systemd/system
all:
true
install:
mkdir -p $(DESTDIR)$(UNITDIR)
cp qubes-core.service $(DESTDIR)$(UNITDIR)
cp qubes-vm@.service $(DESTDIR)$(UNITDIR)
cp qubes-qmemman.service $(DESTDIR)$(UNITDIR)
cp qubesd.service $(DESTDIR)$(UNITDIR)
install -d $(DESTDIR)$(UNITDIR)/lvm2-pvscan@.service.d
install -m 0644 lvm2-pvscan@.service.d_30_qubes.conf \
$(DESTDIR)$(UNITDIR)/lvm2-pvscan@.service.d/30_qubes.conf