6 lines
93 B
Bash
6 lines
93 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ ! -f /var/run/qubes-service/clocksync ]; then
|
||
|
/usr/bin/qvm-sync-clock
|
||
|
fi
|