mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
sysrepo: merge sysrepod and sysrepo-plugind
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
This commit is contained in:
@@ -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}
|
||||
}
|
||||
Reference in New Issue
Block a user