mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-03 02:23:11 +02:00
10 lines
183 B
Bash
10 lines
183 B
Bash
#!/bin/sh
|
|
exec 2>&1
|
|
|
|
sv check GCP-Guest-Initialization >/dev/null || exit 1
|
|
|
|
while ! ping -c1 metadata.google.internal >/dev/null ; do
|
|
sleep 5
|
|
done
|
|
|
|
exec google_clock_skew_daemon
|