[package] base-files/busybox: move ntpd init script from base-files to busybox

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37383 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Luka Perkov
2013-07-17 22:24:45 +00:00
parent 4dffb2b78d
commit 3fdbe277fa
3 changed files with 3 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=busybox
PKG_VERSION:=1.19.4
PKG_RELEASE:=6
PKG_RELEASE:=7
PKG_FLAGS:=essential
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
@@ -37,6 +37,7 @@ endif
init-y :=
init-$(CONFIG_BUSYBOX_CONFIG_CROND) += cron
init-$(CONFIG_BUSYBOX_CONFIG_NTPD) += ntp
init-$(CONFIG_BUSYBOX_CONFIG_TELNETD) += telnet
define Package/busybox

31
package/utils/busybox/files/ntp Executable file
View File

@@ -0,0 +1,31 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2011 OpenWrt.org
START=98
USE_PROCD=1
PROG=/usr/sbin/ntpd
SERVICE_PID_FILE=/var/run/sysntpd.pid
start_service() {
local peers
local args="-n"
local enable_server
config_load system
config_get peers ntp server
config_get_bool enable_server ntp enable_server 0
[ $enable_server -eq 0 -a -z "$peers" ] && return
procd_open_instance
procd_set_param command "$PROG" -n
[ $enable_server -ne 0 ] && procd_append_param command -l
[ -n "$peers" ] && {
local peer
for peer in $peers; do
procd_append_param command -p $peer
done
}
procd_close_instance
}