14 lines
198 B
Plaintext
14 lines
198 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2007-2008 OpenWrt.org
|
||
|
|
||
|
START=70
|
||
|
|
||
|
start() {
|
||
|
[ -f /etc/keepalived/keepalived ] && /usr/sbin/keepalived
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall keepalived
|
||
|
}
|
||
|
|