15 lines
188 B
Text
15 lines
188 B
Text
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2007-2015 OpenWrt.org
|
||
|
|
||
|
START=70
|
||
|
|
||
|
SERVICE_USE_PID=1
|
||
|
|
||
|
start() {
|
||
|
service_start /usr/sbin/keepalived
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
service_stop /usr/sbin/keepalived
|
||
|
}
|