15 lines
		
	
	
		
			447 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			447 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
# vim: ft=systemd
 | 
						|
[Unit]
 | 
						|
WantedBy=multi-user.target
 | 
						|
 | 
						|
# See `man systemd.exec` and `man systemd.service` for most options below
 | 
						|
[Service]
 | 
						|
ExecStart=/path/to/reaction -c /etc/reaction.yml
 | 
						|
 | 
						|
# Ask systemd to create /var/lib/reaction (/var/lib/ is implicit)
 | 
						|
StateDirectory=reaction
 | 
						|
# Ask systemd to create /run/reaction at runtime (/run/ is implicit)
 | 
						|
RuntimeDirectory=reaction
 | 
						|
# Start reaction in its state directory
 | 
						|
WorkingDirectory=/var/lib/reaction
 |