mirror of
https://github.com/jbowdre/vsphere-k8s.git
synced 2024-11-22 16:02:19 +00:00
6 lines
125 B
Bash
6 lines
125 B
Bash
|
#!/bin/bash -eu
|
||
|
echo '>> Waiting for cloud-init...'
|
||
|
while [ ! -f /var/lib/cloud/instance/boot-finished ]; do
|
||
|
sleep 1
|
||
|
done
|