[packages] openntpd:

- don't check directory permissions, we can't make /var 0700 (#9258)
	- fix init script after r26148, use service_kill instead of killall -9 (#9258)
	- bump pkg revision


git-svn-id: svn://svn.openwrt.org/openwrt/packages@26717 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow
2011-04-18 10:23:50 +00:00
parent 27081c4456
commit a6d46ff650
3 changed files with 16 additions and 6 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2006-2011 OpenWrt.org
START=60
@ -8,12 +8,11 @@ boot() {
}
start() {
mkdir -p `awk -F: '/^ntp:/{print $6}' /etc/passwd`
mkdir -p `awk -F: '/^network:/{print $6}' /etc/passwd`
mkdir -p /var/db/
/usr/sbin/ntpd -s
}
stop() {
# -1 seems insufficient to kill one of the two underlying processes.
killall -9 ntpd
service_kill ntpd
}