mirror of
https://github.com/openwrt/packages.git
synced 2025-07-15 03:04:48 +00:00
Add keepalived.user script handling which are also saved during sysupgrade. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
8 lines
91 B
Bash
8 lines
91 B
Bash
#!/bin/sh
|
|
|
|
[ -f "/etc/keepalived.user" ] && {
|
|
/bin/sh /etc/keepalived.user "$@"
|
|
}
|
|
|
|
exit 0
|