blob: 1eaa046aefe994324bdfdfca50c399686453c4d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/sbin/openrc-run
command=/usr/bin/maxscale
command_args="-U maxscale -P /run/maxscale"
name="MaxScale database proxy"
pidfile="/run/maxscale/maxscale.pid"
description="MaxScale provides database specific proxy functionality"
extra_started_commands="reload"
start_pre() {
checkpath -D -o maxscale:maxscale /run/maxscale
}
reload()
{
ebegin "Reloading ${name}"
pkill -HUP -F /run/maxscale/maxscale.pid
eend $?
}
|