diff options
-rw-r--r-- | recipes-support/ntp/ntp_4.2.6p3.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-support/ntp/ntp_4.2.6p3.bb b/recipes-support/ntp/ntp_4.2.6p3.bb index 1476c6fbb7..f64f6f6d92 100644 --- a/recipes-support/ntp/ntp_4.2.6p3.bb +++ b/recipes-support/ntp/ntp_4.2.6p3.bb | |||
@@ -36,10 +36,10 @@ pkg_postinst_ntpdate() { | |||
36 | if test "x$D" != "x"; then | 36 | if test "x$D" != "x"; then |
37 | exit 1 | 37 | exit 1 |
38 | else | 38 | else |
39 | if ! grep -q -s ntpdate /var/cron/tabs/root; then | 39 | if ! grep -q -s ntpdate /var/spool/cron/root; then |
40 | echo "adding crontab" | 40 | echo "adding crontab" |
41 | test -d /var/cron/tabs || mkdir -p /var/cron/tabs | 41 | test -d /var/spool/cron || mkdir -p /var/spool/cron |
42 | echo "30 * * * * /usr/bin/ntpdate -b -s -u pool.ntp.org" >> /var/cron/tabs/root | 42 | echo "30 * * * * /usr/bin/ntpdate -b -s -u pool.ntp.org" >> /var/spool/cron/root |
43 | fi | 43 | fi |
44 | fi | 44 | fi |
45 | } | 45 | } |