|
Bugzilla – Full Text Bug Listing |
| Summary: | ntpd stalls boot process. | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE 11.0 | Reporter: | Andreas Pfaller <andreas.pfaller> |
| Component: | Network | Assignee: | Peter Varkoly <varkoly> |
| Status: | RESOLVED FIXED | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Enhancement | ||
| Priority: | P5 - None | CC: | andreas.pfaller, forgotten_DHIkF8sU1p, kolAflash, mailstijn, mrueckert |
| Version: | Final | ||
| Target Milestone: | openSUSE 11.1 | ||
| Hardware: | Other | ||
| OS: | openSUSE 11.0 | ||
| Whiteboard: | |||
| Found By: | --- | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Andreas Pfaller
2008-07-10 01:34:53 UTC
Having the same problem - very annoying when connection wlan after graphical login. I have the same problem, my workaround is a dispatcher-script for networkmanager. 'sleep 600' because ntpd check every 5 minutes ( -U <sec> ) for available interfaces, 10 minutes are on the secure side. There is no external server configured in /etc/ntp.conf, only the buildin clock bernd@schleppi:~> cat '/etc/NetworkManager/dispatcher.d/ntp' #! /bin/sh # # ntp dispatcher script for NetworkManager # # Bernd Weigelt <xxxxx@xxxx.xyz> # case "$2" in up) /sbin/chkconfig --check ntp && \ /etc/init.d/ntp restart && \ sleep 600 && \ /etc/init.d/ntp addserver de.pool.ntp.org ;; down) /sbin/chkconfig --check ntp && \ /etc/init.d/ntp restart ;; *) exit 0 ;; esac Are you using network manager or traditional ifup? ifup. The system is headless and serves as my internet gateway. External connectivity is via pppoe (with smppd on the gateway and (k|c)internet on my other systems). Connection to the internet is manually controlled (no dial-on-demand). Fixed for STABLE (SLES11 & openSUSE 11.1) I've introduced a new sysconfig variable: ## Type: yesno ## Default: yes ## ServiceRestart: ntp # # Shall the time server ntpd syncronize the time by booting the system? # NTPD_BOOT_SYNC="yes" *** Bug 414478 has been marked as a duplicate of this bug. *** Peter does that new sysconfig variable really fix the issue? If I boot a testkernel on an internal buildhost, and the network driver does not work because $Linus screwed it up, what will happen? I suspect, from the very short description, my testbox will not allow me to login on console for a very very long time just because ntp is stalled (and ntpd must run on a buildhost). yes and for this case you can set this variable to "no". imho you should put the check for NTPD_BOOT_SYNC around the call $0 ntptimeset. otherwise you break "rcntp timeset" when called from a shell later. *** Bug 425675 has been marked as a duplicate of this bug. *** |