29 lines
		
	
	
		
			579 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			579 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#!/sbin/openrc-run
 | 
						|
 | 
						|
name=$RC_SVCNAME
 | 
						|
description="OpenNebula noVNC Server"
 | 
						|
command="/usr/bin/novnc-server"
 | 
						|
command_user="oneadmin:cloud"
 | 
						|
supervisor="supervise-daemon"
 | 
						|
 | 
						|
depend() {
 | 
						|
        before opennebula-sunstone
 | 
						|
        after syslog networking netmount
 | 
						|
}
 | 
						|
 | 
						|
start() {
 | 
						|
        ebegin "Starting $RC_SVCNAME"
 | 
						|
        start-stop-daemon \
 | 
						|
            --exec $command \
 | 
						|
            --user $command_user \
 | 
						|
            --start -- start
 | 
						|
        eend $?
 | 
						|
}
 | 
						|
 | 
						|
stop() {
 | 
						|
        ebegin "Stopping $RC_SVCNAME"
 | 
						|
        $command stop
 | 
						|
        /bin/rm -f /var/lock/one/.novnc.lock
 | 
						|
        eend $?
 | 
						|
}
 |