dom0/ClockVM: disable ntpd in ClockVM (#435)

To not conflict with ntpdate (both are using 123/udp port).
This commit is contained in:
Marek Marczykowski 2012-02-01 17:51:04 +01:00
parent 59e7041554
commit 3a71716db3

View File

@ -2546,9 +2546,9 @@ class QubesVmCollection(dict):
self.clockvm_qid = clockvm.qid
# Enable ntpd in ClockVM
# Disable ntpd in ClockVM - to not conflict with ntpdate (both are using 123/udp port)
if self.clockvm_qid is not None:
self[self.clockvm_qid].services['ntpd'] = True
self[self.clockvm_qid].services['ntpd'] = False
return True
def pop(self, qid):