mirror of
				https://github.com/ergochat/ergo.git
				synced 2025-11-04 07:47:25 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			455 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			455 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/sbin/sh
 | 
						|
#
 | 
						|
# SMF method script for ergo - used by manifest file ergo.xml
 | 
						|
# Created 22/11/2021 by georg@lysergic.dev
 | 
						|
 | 
						|
. /lib/svc/share/smf_include.sh
 | 
						|
 | 
						|
case $1 in
 | 
						|
'start')
 | 
						|
        exec /opt/ergo/ergo run --conf /opt/ergo/ircd.yaml
 | 
						|
        ;;
 | 
						|
 | 
						|
'refresh' )
 | 
						|
        exec pkill -1 -U ergo -x ergo
 | 
						|
        ;;
 | 
						|
'stop' )
 | 
						|
        exec pkill -U ergo -x ergo
 | 
						|
        ;;
 | 
						|
 | 
						|
*)
 | 
						|
        echo "Usage: $0 { start | refresh | stop }"
 | 
						|
        exit 1
 | 
						|
        ;;
 | 
						|
esac
 | 
						|
 | 
						|
exit $?
 |