37 lines
		
	
	
		
			564 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			564 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| #!/sbin/runscript
 | |
| # Copyright 1999-2013 Gentoo Foundation
 | |
| # Distributed under the terms of the GNU General Public License v2
 | |
| # $Id$
 | |
| 
 | |
| description="Minetest dedicated server"
 | |
| 
 | |
| depend() {
 | |
| 	need net
 | |
| }
 | |
| 
 | |
| start() {
 | |
| 	ebegin "starting server"
 | |
| 	start-stop-daemon \
 | |
| 		--start \
 | |
| 		--quiet \
 | |
| 		--make-pidfile \
 | |
| 		--pidfile "${PIDFILE}" \
 | |
| 		--background \
 | |
| 		--user ${USER} \
 | |
| 		--group ${GROUP} \
 | |
| 		--exec "${MINETESTBIN}" -- ${ARGS}
 | |
| 
 | |
| 	eend $?
 | |
| }
 | |
| 
 | |
| stop() {
 | |
| 	ebegin "stopping server"
 | |
| 	start-stop-daemon \
 | |
| 		--stop \
 | |
| 		--signal 15 \
 | |
| 		--quiet \
 | |
| 		--pidfile "${PIDFILE}"
 | |
| 
 | |
| 	eend $?
 | |
| }
 |