Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new vms #320

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion IMG_SFX
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20231208t193858z-f39f38d13
20240102t212217z-f39f38d13
12 changes: 11 additions & 1 deletion base_images/debian_base-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ echo "Updating package source lists"
#
# This will probably be necessary until debian 13 becomes stable.
# At which time some new kludge will be necessary.
timebomb 20231231 "workaround for updating debian 12 to 13"
#
# FIXME: 2024-01-02: Bumped the timebomb expiration date because it's
# too hard to find out if it's fixed or not
timebomb 20240110 "workaround for updating debian 12 to 13"
$SUDO tee /usr/bin/version_find_latest <<"EOF"
#!/bin/bash
#
Expand Down Expand Up @@ -133,6 +136,13 @@ echo "$version_find_latest_a"
EOF
$SUDO chmod 755 /usr/bin/version_find_latest

# 2024-01-02 between 2023-12 and now, debian got tar-1.35+dfsg-2
# which has the horrible duplicate-path bug:
# https://github.com/containers/podman/issues/19407
# https://bugzilla.redhat.com/show_bug.cgi?id=2230127
timebomb 20240110 "prevent us from getting broken tar-1.35+dfsg-2"
( set -x; $SUDO apt-mark hold tar; )

echo "Upgrading to SID"
( set -x; $SUDO apt-get -q -y full-upgrade; )
echo "Installing basic, necessary packages."
Expand Down
5 changes: 1 addition & 4 deletions cache_images/fedora_packaging.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ INSTALL_PACKAGES=(\
pandoc
parallel
passt
perl-Clone
perl-FindBin
pkgconfig
podman
Expand Down Expand Up @@ -220,7 +221,3 @@ cd -

# It was observed in F33, dnf install doesn't always get you the latest/greatest
lilto $SUDO dnf update -y

# FIXME FIXME FIXME 2023-11-16 TEMPORARY to get crun-1.11.2
timebomb 20231220 "force-update crun >= 1.11.1 on f38"
lilto $SUDO dnf --enablerepo=updates-testing -y upgrade crun
2 changes: 1 addition & 1 deletion image_builder/install_packages.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ findutils
gawk
genisoimage
git
google-cloud-sdk
google-cloud-cli
jq
libvirt
libvirt-admin
Expand Down