2007-07-20 12:15:36 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
START=50
|
|
|
|
|
|
|
|
start_service () {
|
|
|
|
local section="$1"
|
2007-09-14 14:09:40 +00:00
|
|
|
config_get service "$section" service
|
|
|
|
config_get username "$section" username
|
|
|
|
config_get password "$section" password
|
|
|
|
config_get host "$section" host
|
|
|
|
config_get update "$section" update
|
2007-07-20 12:15:36 +00:00
|
|
|
|
|
|
|
[ "$update" = 1 ] && {
|
2007-09-14 14:09:40 +00:00
|
|
|
/usr/bin/updatedd -Y $service -- $username:$password $host
|
2007-07-20 12:15:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
config_load "updatedd"
|
|
|
|
config_foreach start_service updatedd
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
killall updatedd
|
|
|
|
}
|