mirror of
				https://github.com/strongswan/strongswan.git
				synced 2025-11-03 00:01:15 -05:00 
			
		
		
		
	Use strongswan-starter for the legacy unit and simply strongswan for the modern one (strongswan-swanctl is configured as alias, which should cause the installation of symlinks when the service is enabled via systemctl).
		
			
				
	
	
		
			13 lines
		
	
	
		
			315 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			315 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
EXTRA_DIST = strongswan-starter.service.in
 | 
						|
CLEANFILES = strongswan-starter.service
 | 
						|
 | 
						|
systemdsystemunit_DATA = strongswan-starter.service
 | 
						|
 | 
						|
strongswan-starter.service : strongswan-starter.service.in
 | 
						|
	$(AM_V_GEN) \
 | 
						|
	sed \
 | 
						|
	-e "s:@SBINDIR@:$(sbindir):" \
 | 
						|
	-e "s:@IPSEC_SCRIPT@:$(ipsec_script):" \
 | 
						|
	$(srcdir)/$@.in > $@
 |