import ostree-2020.3-3.el8
This commit is contained in:
parent
86d4ae383b
commit
d4cdb32ea3
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/libostree-2019.6.tar.xz
|
SOURCES/libostree-2020.3.tar.xz
|
||||||
|
@ -1 +1 @@
|
|||||||
afdb1c1aa53a466962fb24f106c6560604c2c5be SOURCES/libostree-2019.6.tar.xz
|
68a3ca414ddb14596ab92d170f43dabfa78f100e SOURCES/libostree-2020.3.tar.xz
|
||||||
|
@ -0,0 +1,33 @@
|
|||||||
|
From e35b82fb891daee823fcce421ae8f1442b630ea2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jonathan Lebon <jonathan@jlebon.com>
|
||||||
|
Date: Wed, 20 May 2020 16:18:45 -0400
|
||||||
|
Subject: [PATCH] switchroot/remount: Neuter sysroot.readonly for now
|
||||||
|
|
||||||
|
We're hitting issues with the read-only remounts racing with various
|
||||||
|
services coming up. Let's neuter it for now until we rework how it
|
||||||
|
works.
|
||||||
|
|
||||||
|
See: https://github.com/coreos/fedora-coreos-tracker/issues/488
|
||||||
|
---
|
||||||
|
src/switchroot/ostree-remount.c | 5 ++++-
|
||||||
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/switchroot/ostree-remount.c b/src/switchroot/ostree-remount.c
|
||||||
|
index 326b104f..00e21296 100644
|
||||||
|
--- a/src/switchroot/ostree-remount.c
|
||||||
|
+++ b/src/switchroot/ostree-remount.c
|
||||||
|
@@ -93,7 +93,10 @@ sysroot_is_configured_ro (void)
|
||||||
|
if (!g_key_file_load_from_file (keyfile, config_path, 0, NULL))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
- return g_key_file_get_boolean (keyfile, "sysroot", "readonly", NULL);
|
||||||
|
+ if (g_key_file_get_boolean (keyfile, "sysroot", "readonly", NULL))
|
||||||
|
+ puts ("Ignoring sysroot.readonly config; see https://github.com/coreos/fedora-coreos-tracker/issues/488.");
|
||||||
|
+
|
||||||
|
+ return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
--
|
||||||
|
2.25.4
|
||||||
|
|
@ -7,12 +7,14 @@
|
|||||||
|
|
||||||
Summary: Tool for managing bootable, immutable filesystem trees
|
Summary: Tool for managing bootable, immutable filesystem trees
|
||||||
Name: ostree
|
Name: ostree
|
||||||
Version: 2019.6
|
Version: 2020.3
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Source0: https://github.com/ostreedev/%{name}/releases/download/v%{version}/libostree-%{version}.tar.xz
|
Source0: https://github.com/ostreedev/%{name}/releases/download/v%{version}/libostree-%{version}.tar.xz
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: https://ostree.readthedocs.io/en/latest/
|
URL: https://ostree.readthedocs.io/en/latest/
|
||||||
|
|
||||||
|
Patch0: 0001-switchroot-remount-Neuter-sysroot.readonly-for-now.patch
|
||||||
|
|
||||||
BuildRequires: git
|
BuildRequires: git
|
||||||
# We always run autogen.sh
|
# We always run autogen.sh
|
||||||
BuildRequires: autoconf automake libtool
|
BuildRequires: autoconf automake libtool
|
||||||
@ -162,6 +164,13 @@ find %{buildroot} -name '*.la' -delete
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu May 21 2020 Colin Walters <walters@verbum.org> - 2020.3-3
|
||||||
|
- Backport https://github.com/ostreedev/ostree/pull/2108
|
||||||
|
|
||||||
|
* Fri May 15 2020 Colin Walters <walters@verbum.org> - 2020.3-2
|
||||||
|
- https://github.com/ostreedev/ostree/releases/tag/v2020.3
|
||||||
|
Resolves: #1836306
|
||||||
|
|
||||||
* Tue Dec 10 2019 Colin Walters <walters@verbum.org> - 2019.6-2
|
* Tue Dec 10 2019 Colin Walters <walters@verbum.org> - 2019.6-2
|
||||||
- https://github.com/ostreedev/ostree/releases/tag/v2019.6
|
- https://github.com/ostreedev/ostree/releases/tag/v2019.6
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user