mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

Remove disused `build_cache_images` task, and update relevant dockerfiles for F30. Fix problem of cloud-init failing to expand root-device on boot (/var/lib/cloud/instance left in improper state). Fix problem of cloud-init racing with google-network-daemon.service on boot (looking for cloudconfig metadata too early). Causing root-device to _sometimes_ fail to expand. Fix problem of hack/get_ci_vm.sh argument passing. Signed-off-by: Chris Evich <cevich@redhat.com>
21 lines
477 B
Desktop File
21 lines
477 B
Desktop File
[Unit]
|
|
Description=Initial cloud-init job (metadata service crawler)
|
|
DefaultDependencies=no
|
|
Wants=cloud-init-local.service
|
|
After=cloud-init-local.service
|
|
Wants=google-network-daemon.service
|
|
After=google-network-daemon.service
|
|
Before=systemd-user-sessions.service
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/usr/bin/cloud-init init
|
|
RemainAfterExit=yes
|
|
TimeoutSec=0
|
|
|
|
# Output needs to appear in instance console output
|
|
StandardOutput=journal+console
|
|
|
|
[Install]
|
|
WantedBy=cloud-init.target
|