import rpm-ostree-2022.10.112.g3d0ac35b-3.el8
This commit is contained in:
parent
8619a52307
commit
86d68800fc
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/rpm-ostree-2022.10.90.g4abaf4b4.tar.xz
|
||||
SOURCES/rpm-ostree-2022.10.112.g3d0ac35b.tar.xz
|
||||
|
@ -1 +1 @@
|
||||
00674220f1468ad2f63062668cdd02022b2eba43 SOURCES/rpm-ostree-2022.10.90.g4abaf4b4.tar.xz
|
||||
cdce35bda2d188e33f236e06b4c6e1d39bf5f71b SOURCES/rpm-ostree-2022.10.112.g3d0ac35b.tar.xz
|
||||
|
@ -0,0 +1,74 @@
|
||||
From a0f1275dfbd835b704355d095e610ac1f1254f25 Mon Sep 17 00:00:00 2001
|
||||
From: Colin Walters <walters@verbum.org>
|
||||
Date: Sun, 11 Dec 2022 13:40:15 -0500
|
||||
Subject: [PATCH] daemon: Make failure to query base image non-fatal
|
||||
|
||||
We had a GC bug which then propagates into a hard daemon
|
||||
failure right now because we try to gather data on all deployments.
|
||||
|
||||
Make this non-fatal; we should try to stumble forward as much
|
||||
as possible so that one can e.g. perform an upgrade operation.
|
||||
|
||||
(cherry picked from commit 8dd45f293afc1ca32b42bda86dde47c66e652dda)
|
||||
---
|
||||
src/app/rpmostree-builtin-status.cxx | 12 +++++++++---
|
||||
src/daemon/rpmostreed-deployment-utils.cxx | 20 ++++++++++++++------
|
||||
2 files changed, 23 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/src/app/rpmostree-builtin-status.cxx b/src/app/rpmostree-builtin-status.cxx
|
||||
index cec0a2e3..ee82e589 100644
|
||||
--- a/src/app/rpmostree-builtin-status.cxx
|
||||
+++ b/src/app/rpmostree-builtin-status.cxx
|
||||
@@ -688,9 +688,15 @@ print_one_deployment (RPMOSTreeSysroot *sysroot_proxy, GVariant *child, gint ind
|
||||
break;
|
||||
case rpmostreecxx::RefspecType::Container:
|
||||
{
|
||||
- g_assert (g_variant_dict_lookup (dict, "container-image-reference-digest", "s",
|
||||
- &container_image_reference_digest));
|
||||
- g_print ("%s", origin_refspec);
|
||||
+ if (g_variant_dict_lookup (dict, "container-image-reference-digest", "s",
|
||||
+ &container_image_reference_digest))
|
||||
+ {
|
||||
+ g_print ("%s", origin_refspec);
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ g_print ("(error fetching image metadata)");
|
||||
+ }
|
||||
}
|
||||
break;
|
||||
}
|
||||
diff --git a/src/daemon/rpmostreed-deployment-utils.cxx b/src/daemon/rpmostreed-deployment-utils.cxx
|
||||
index b7b27fed..48480509 100644
|
||||
--- a/src/daemon/rpmostreed-deployment-utils.cxx
|
||||
+++ b/src/daemon/rpmostreed-deployment-utils.cxx
|
||||
@@ -214,12 +214,20 @@ rpmostreed_deployment_generate_variant (OstreeSysroot *sysroot, OstreeDeployment
|
||||
case rpmostreecxx::RefspecType::Container:
|
||||
{
|
||||
g_variant_dict_insert (dict, "container-image-reference", "s", refspec);
|
||||
- CXX_TRY_VAR (state, rpmostreecxx::query_container_image_commit (*repo, base_checksum),
|
||||
- error);
|
||||
- g_variant_dict_insert (dict, "container-image-reference-digest", "s",
|
||||
- state->image_digest.c_str ());
|
||||
- if (state->version.size () > 0)
|
||||
- g_variant_dict_insert (dict, "version", "s", state->version.c_str ());
|
||||
+ // For now, make this non-fatal https://github.com/coreos/rpm-ostree/issues/4185
|
||||
+ try
|
||||
+ {
|
||||
+ auto state = rpmostreecxx::query_container_image_commit (*repo, base_checksum);
|
||||
+ g_variant_dict_insert (dict, "container-image-reference-digest", "s",
|
||||
+ state->image_digest.c_str ());
|
||||
+ if (state->version.size () > 0)
|
||||
+ g_variant_dict_insert (dict, "version", "s", state->version.c_str ());
|
||||
+ }
|
||||
+ catch (std::exception &e)
|
||||
+ {
|
||||
+ sd_journal_print (LOG_ERR, "failed to query container image base metadata: %s",
|
||||
+ e.what ());
|
||||
+ }
|
||||
}
|
||||
break;
|
||||
case rpmostreecxx::RefspecType::Checksum:
|
||||
--
|
||||
2.31.1
|
||||
|
@ -3,14 +3,16 @@
|
||||
|
||||
Summary: Hybrid image/package system
|
||||
Name: rpm-ostree
|
||||
Version: 2022.10.90.g4abaf4b4
|
||||
Release: 4%{?dist}
|
||||
Version: 2022.10.112.g3d0ac35b
|
||||
Release: 3%{?dist}
|
||||
License: LGPLv2+
|
||||
URL: https://github.com/coreos/rpm-ostree
|
||||
# This tarball is generated via "cd packaging && make -f Makefile.dist-packaging dist-snapshot"
|
||||
# in the upstream git. It also contains vendored Rust sources. This is generated from the "rhel8" branch.
|
||||
Source0: https://github.com/coreos/rpm-ostree/releases/download/v%{version}/rpm-ostree-%{version}.tar.xz
|
||||
|
||||
Patch0: 0001-daemon-Make-failure-to-query-base-image-non-fatal.patch
|
||||
|
||||
ExclusiveArch: %{rust_arches}
|
||||
|
||||
BuildRequires: make
|
||||
@ -227,6 +229,29 @@ $PYTHON autofiles.py > files.devel \
|
||||
%files devel -f files.devel
|
||||
|
||||
%changelog
|
||||
* Thu Feb 16 2023 Colin Walters <walters@verbum.org> - 2022.10.112.g3d0ac35b-3
|
||||
- Cherry pick
|
||||
https://github.com/coreos/rpm-ostree/pull/4311/commits/a0f1275dfbd835b704355d095e610ac1f1254f25
|
||||
Resolves: rhbz#2170579
|
||||
|
||||
* Tue Feb 14 2023 Colin Walters <walters@verbum.org> - 2022.10.112.g3d0ac35b-2
|
||||
- Sync to latest rhel8 branch
|
||||
Resolves: rhbz#2169429
|
||||
|
||||
* Fri Oct 14 2022 Colin Walters <walters@verbum.org> - 2022.10.99.g0049dbdd-3
|
||||
- Resolves: rhbz#2134630
|
||||
|
||||
* Wed Sep 28 2022 Colin Walters <walters@verbum.org> - 2022.10.97.gade6df33-2
|
||||
- Update to latest https://github.com/coreos/rpm-ostree/tree/rhel8 at commit
|
||||
https://github.com/coreos/rpm-ostree/commit/ac182cb920f84946bb155e9cf061db7f5f26e917
|
||||
- Resolves: rhbz#2122289
|
||||
|
||||
* Wed Aug 31 2022 Colin Walters <walters@verbum.org> - 2022.10.94.g89f58028-2
|
||||
- Update to latest https://github.com/coreos/rpm-ostree/tree/rhel8 at commit
|
||||
https://github.com/coreos/rpm-ostree/commit/89f58028f0bea5b6fa59bdb3506078e09957ec00
|
||||
- Resolves: rhbz#2122289
|
||||
- Resolves: rhbz#2122299
|
||||
|
||||
* Tue Aug 16 2022 Colin Walters <walters@verbum.org> - 2022.10.90.g4abaf4b4-4
|
||||
- Update to latest https://github.com/coreos/rpm-ostree/tree/rhel8 at commit
|
||||
https://github.com/coreos/rpm-ostree/commit/4abaf4b4
|
||||
|
Loading…
Reference in New Issue
Block a user