View previous topic :: View next topic |
Author |
Message |
martchy n00b
Joined: 18 Mar 2005 Posts: 4
|
Posted: Wed Jun 22, 2005 9:51 pm Post subject: [Solved] NTP-Client start before net.eth0 |
|
|
Hello,
My Ntp-client try to start on boot before net.eth0. Of course don't work.
how can I change my boot order ?
Code: |
Runlevel: default
vixie-cron [ started ]
local [ started ]
bootsplash [ started ]
syslog-ng [ started ]
autoconfig [ started ]
numlock [ started ]
hald [ started ]
netmount [ started ]
famd [ started ]
cupsd [ started ]
ntp-client [ started ]
net.eth0 [ started ]
|
Last edited by martchy on Thu Jun 23, 2005 4:32 pm; edited 1 time in total |
|
Back to top |
|
|
Kaboosh Apprentice
Joined: 10 Jun 2004 Posts: 162 Location: Edmonton, AB - Canada
|
Posted: Thu Jun 23, 2005 2:28 am Post subject: Easy |
|
|
Edit /etc/init.d/ntp-client - you should have something like the following:
Code: |
depend() {
before cron
need net
use dns logger
}
|
The "need net" line tells the init process to only load ntp-client after networking has loaded. |
|
Back to top |
|
|
martchy n00b
Joined: 18 Mar 2005 Posts: 4
|
Posted: Thu Jun 23, 2005 4:31 pm Post subject: |
|
|
Solved
Thank you |
|
Back to top |
|
|
|