mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	* Create librenms-irc.service basic systemd start up script goes in /etc/systemd/system/librenms-irc.service it is set to start at boot, but it can be stopped or started just like any other systemd script ie. systemctl start librenms-irc.service * Small changes
		
			
				
	
	
		
			13 lines
		
	
	
		
			195 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			195 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
# /etc/systemd/system/librenms-irc.service 
 | 
						|
 | 
						|
[Unit]
 | 
						|
Description=Librenms IRC bot
 | 
						|
After=network.target
 | 
						|
 | 
						|
[Service]
 | 
						|
ExecStart=/opt/librenms/irc.php
 | 
						|
Restart=always
 | 
						|
 | 
						|
[Install]
 | 
						|
WantedBy=default.target
 |