aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2013-07-17 22:24:45 +0000
committerLuka Perkov <luka@openwrt.org>2013-07-17 22:24:45 +0000
commit3fdbe277fad54c44d2f6e353ffe4043400c55d61 (patch)
tree1a9f1652a0918128442e9b554e0bacee0e25e1cc /package/base-files
parent4dffb2b78d2da4d2a9af0247319100e5cc99fb9f (diff)
downloadmaster-187ad058-3fdbe277fad54c44d2f6e353ffe4043400c55d61.tar.gz
master-187ad058-3fdbe277fad54c44d2f6e353ffe4043400c55d61.tar.bz2
master-187ad058-3fdbe277fad54c44d2f6e353ffe4043400c55d61.zip
[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
Diffstat (limited to 'package/base-files')
-rw-r--r--package/base-files/Makefile2
-rwxr-xr-xpackage/base-files/files/etc/init.d/sysntpd31
2 files changed, 1 insertions, 32 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile
index fa2081f8d4..3bdb0a8d3f 100644
--- a/package/base-files/Makefile
+++ b/package/base-files/Makefile
@@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/kernel.mk
include $(INCLUDE_DIR)/version.mk
PKG_NAME:=base-files
-PKG_RELEASE:=141
+PKG_RELEASE:=142
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
PKG_BUILD_DEPENDS:=opkg/host
diff --git a/package/base-files/files/etc/init.d/sysntpd b/package/base-files/files/etc/init.d/sysntpd
deleted file mode 100755
index c40ee76da3..0000000000
--- a/package/base-files/files/etc/init.d/sysntpd
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/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
-}