From e7b65b457b23bf8136289f06f61a328a3ba8a86a Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Fri, 9 Mar 2012 20:16:55 +0100 Subject: [PATCH] dom0/pm-utils: initial clock sync also in ClockVM after resume When there is no internet connection, clockvm will have no chance to sync clock itself. --- dom0/pm-utils/01qubes-sync-vms-clock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom0/pm-utils/01qubes-sync-vms-clock b/dom0/pm-utils/01qubes-sync-vms-clock index 58344c7f..ccc7eeae 100755 --- a/dom0/pm-utils/01qubes-sync-vms-clock +++ b/dom0/pm-utils/01qubes-sync-vms-clock @@ -8,7 +8,7 @@ sync_qubes_vms_wallclock() DATE=$(date) echo echo "Syncing VMs clock to: $DATE" - qvm-run --all --exclude=`qubes-prefs --get clockvm` -u root "date -s \"$DATE\"" + qvm-run --all -u root "date -s \"$DATE\"" # Then try to sync from the network /usr/bin/qvm-sync-clock & }