|
This fixes an issue when stopping and restarting SIP servers using `koha-sip` - it would sometimes not restart the SIP servers.
This was because a restart could attempt the --start command while a previous SIP server was still running. This could result in the SIP server not restarting at all.
The fix replaces `daemon --stop` with `start-stop-daemon --stop` in the code, to ensure that all the running SIP servers are actually stopped before restarting.
|