diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-08 18:10:40 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-08 18:10:40 +0000 |
commit | cc74ba9c397335cac270cc711d49a4defaa774c1 (patch) | |
tree | a4e29aac737763f96e5e9e06b2ba84bb8488b315 /openwrt/package/openntpd | |
parent | 432a7e7be9d2379beb17cc936993b22595814fb6 (diff) |
Merged enhancements submitted by Stereo, thanks, closes #188 and #189
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2863 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/openntpd')
-rw-r--r-- | openwrt/package/openntpd/files/ntpd.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/openntpd/files/ntpd.init b/openwrt/package/openntpd/files/ntpd.init index e528748780..8bac705b4a 100644 --- a/openwrt/package/openntpd/files/ntpd.init +++ b/openwrt/package/openntpd/files/ntpd.init @@ -1,3 +1,3 @@ #!/bin/sh -mkdir -p `grep "^ntp:" /etc/passwd | cut -d: -f6` +mkdir -p `awk -F: '/^ntp:/{print $6}' /etc/passwd` /usr/sbin/ntpd -s |