 5e89b23288
			
		
	
	
		5e89b23288
		
			
		
	
	
	
	
		
			
			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
		
			
				
	
	
		
			15 lines
		
	
	
		
			434 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			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
 |