351646d5bd
except when it already exists, of course
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
|