diff options
| author | Florian Fainelli <florian@openwrt.org> | 2006-01-08 18:10:40 +0000 |
|---|---|---|
| committer | Florian Fainelli <florian@openwrt.org> | 2006-01-08 18:10:40 +0000 |
| commit | 4fb752fea6816787478563d958a4d33be03454a4 (patch) | |
| tree | ce7d1651e1fcc9b24fa3c9cd45b37484f6aab23c /openwrt | |
| parent | 3dbd25eba7aa307e7fc21aa8b9add8e554166030 (diff) | |
| download | mtk-20170518-4fb752fea6816787478563d958a4d33be03454a4.zip mtk-20170518-4fb752fea6816787478563d958a4d33be03454a4.tar.gz mtk-20170518-4fb752fea6816787478563d958a4d33be03454a4.tar.bz2 | |
Merged enhancements submitted by Stereo, thanks, closes #188 and #189
SVN-Revision: 2863
Diffstat (limited to 'openwrt')
| -rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S50telnet | 2 | ||||
| -rw-r--r-- | openwrt/package/openntpd/files/ntpd.init | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S50telnet b/openwrt/package/base-files/default/etc/init.d/S50telnet index 599c354..e7d4d36 100755 --- a/openwrt/package/base-files/default/etc/init.d/S50telnet +++ b/openwrt/package/base-files/default/etc/init.d/S50telnet @@ -1,2 +1,2 @@ #!/bin/sh -telnetd -l /bin/login +if awk -F: '/^root:/ && $2 !~ /\*/ {exit 1}' /etc/passwd 2>/dev/null || test $FAILSAFE; then telnetd -l /bin/login; fi diff --git a/openwrt/package/openntpd/files/ntpd.init b/openwrt/package/openntpd/files/ntpd.init index e528748..8bac705 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 |
