diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-05 13:40:07 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-05 13:40:07 +0000 |
commit | dac910112c834ece2c41714f9e01133ad625efdb (patch) | |
tree | 31b5dd260eed5d3cb5570c8fd67841a765d1cd4b /packages/ntp | |
parent | ed63aea30c21a9377f3841308631d6f6b90eb1cb (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/01/05 14:27:25+01:00 (none)!br1
nylon-statistics
2005/01/05 14:20:50+01:00 (none)!br1
improved postinst for nylon-scripts, nylon-statistics, ntp (nylon) and prism2-firmware-update
BKrev: 41dbee37nRSzsrYX2DJsbnG6pcc5bQ
Diffstat (limited to 'packages/ntp')
-rw-r--r-- | packages/ntp/ntp_4.1.2.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/ntp/ntp_4.1.2.bb b/packages/ntp/ntp_4.1.2.bb index dba8632893..5b96e6cbf8 100644 --- a/packages/ntp/ntp_4.1.2.bb +++ b/packages/ntp/ntp_4.1.2.bb @@ -28,15 +28,15 @@ do_install_append() { } pkg_postinst_ntpdate_nylon() { -#!/bin/sh -if test "x$D" == "x"; then - mkdir -p /etc/cron/crontabs +if test "x$D" != "x"; then + exit 1 +else if ! grep -q ntpdate /etc/cron/crontabs/root; then echo "adding crontab" + test -d /etc/cron/crontabs || mkdir -p /etc/cron/crontabs echo "30 * * * * /usr/bin/ntpdate -s -u pool.ntp.org" >> /etc/cron/crontabs/root fi update-rc.d -s busybox-cron defaults + update-rc.d -s ntpdate defaults 30 fi -update-rc.d -s ntpdate defaults 30 } -
\ No newline at end of file |