sysrepo: merge sysrepod and sysrepo-plugind

Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
This commit is contained in:
Mislav Novakovic
2017-05-24 17:08:19 +02:00
parent 835c56a4cc
commit 0aa8371086
5 changed files with 44 additions and 62 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/bin/sh /etc/rc.common
START=70
STOP=10
USE_PROCD=1
PROG_DEAMON=/bin/sysrepod
PROG_PLUGIN=/bin/sysrepo-plugind
start_service() {
procd_open_instance
procd_set_param command ${PROG_DEAMON}
procd_append_param command -d -l 0
procd_set_param respawn
procd_close_instance
procd_open_instance
procd_set_param command ${PROG_PLUGIN}
procd_append_param command -d -l 0
procd_set_param respawn
procd_close_instance
}
stop_service()
{
if [ -f /etc/init.d/netopeer2-server ]; then
# netopeer2-server will automatically start sysrepod,
# so we need to stop it
/etc/init.d/netopeer2-server stop
sleep 1
fi
service_stop ${PROG_PLUGIN}
service_stop ${PROG_DEAMON}
}