c142e20baa
When VM is set to synchronize the time with the network, to not sync its time with clockvm. Besides not having sense, in default configuration it will lead to loopback qrexec connection (sys-net -> sys-net), which will hang. QubesOS/qubes-issues#3333
6 lines
93 B
Bash
Executable File
6 lines
93 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -f /var/run/qubes-service/clocksync ]; then
|
|
/usr/bin/qvm-sync-clock
|
|
fi
|