Changes in structure

This commit is contained in:
santic-zombie
2022-07-10 23:39:29 +03:00
parent c6e95bcc08
commit 6e372a5d4e
21 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#!/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 $?
}