- update to latest version (v1.2.15) - add license info - add myself as maintainer Signed-off-by: Nicolas Thill <nico@openwrt.org>
14 lines
188 B
Bash
14 lines
188 B
Bash
#!/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
|
|
}
|