Compare commits
33 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8fce8fdafa | ||
|
|
433961538c | ||
|
|
72422a8136 | ||
|
|
b9baa97706 | ||
|
|
daa0b412c5 | ||
|
|
1e9049fdde | ||
|
|
7000a43327 | ||
|
|
4e6b811688 | ||
|
|
d54f559bbf | ||
|
|
13192360e3 | ||
|
|
b74f8a2953 | ||
|
|
78129120b3 | ||
|
|
bb3b599020 | ||
|
|
465d620016 | ||
|
|
7dac722d5c | ||
|
|
0f746b4341 | ||
|
|
b6b4ae77f5 | ||
|
|
fb89255fe0 | ||
|
|
9615445154 | ||
|
|
cc225b8cd0 | ||
|
|
528cdb0d8c | ||
|
|
46c74a61f1 | ||
|
|
1106a44381 | ||
|
|
89dd549a6a | ||
|
|
00e4f58344 | ||
|
|
69309ecb5a | ||
|
|
0c02886a68 | ||
|
|
2bcf7e1fe8 | ||
|
|
ec40cec290 | ||
|
|
a6b3aa422f | ||
|
|
410065fb04 | ||
|
|
d63c2d1a0b | ||
|
|
47e40e95fe |
8 changed files with 660 additions and 94 deletions
33
.gitignore
vendored
33
.gitignore
vendored
|
|
@ -62,3 +62,36 @@
|
|||
/osbuild-62.tar.gz
|
||||
/osbuild-63.tar.gz
|
||||
/osbuild-64.tar.gz
|
||||
/osbuild-65.tar.gz
|
||||
/osbuild-67.tar.gz
|
||||
/osbuild-68.tar.gz
|
||||
/osbuild-69.tar.gz
|
||||
/osbuild-70.tar.gz
|
||||
/osbuild-71.tar.gz
|
||||
/osbuild-72.tar.gz
|
||||
/osbuild-73.tar.gz
|
||||
/osbuild-74.tar.gz
|
||||
/osbuild-75.tar.gz
|
||||
/osbuild-76.tar.gz
|
||||
/osbuild-78.tar.gz
|
||||
/osbuild-79.tar.gz
|
||||
/osbuild-80.tar.gz
|
||||
/osbuild-81.tar.gz
|
||||
/osbuild-82.tar.gz
|
||||
/osbuild-83.tar.gz
|
||||
/osbuild-84.tar.gz
|
||||
/osbuild-85.tar.gz
|
||||
/osbuild-86.tar.gz
|
||||
/osbuild-87.tar.gz
|
||||
/osbuild-88.tar.gz
|
||||
/osbuild-89.tar.gz
|
||||
/osbuild-90.tar.gz
|
||||
/osbuild-91.tar.gz
|
||||
/osbuild-92.tar.gz
|
||||
/osbuild-94.tar.gz
|
||||
/osbuild-95.tar.gz
|
||||
/osbuild-96.tar.gz
|
||||
/osbuild-97.tar.gz
|
||||
/osbuild-98.tar.gz
|
||||
/osbuild-99.tar.gz
|
||||
/osbuild-100.tar.gz
|
||||
|
|
|
|||
68
.packit.yaml
68
.packit.yaml
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
specfile_path: osbuild.spec
|
||||
|
||||
synced_files:
|
||||
files_to_sync:
|
||||
- osbuild.spec
|
||||
- .packit.yaml
|
||||
|
||||
|
|
@ -17,45 +17,41 @@ srpm_build_deps: []
|
|||
actions:
|
||||
get-current-version: bash -c "git describe --tags --abbrev=0 | sed 's|v||'"
|
||||
|
||||
# Handle only releases without a "dot" (e.g. v88.2), since "dot" releases should never be released to Fedora
|
||||
# "dot" releases are used only for "backports" to RHEL.
|
||||
upstream_tag_include: 'v\d+'
|
||||
|
||||
jobs:
|
||||
- job: copr_build
|
||||
- &copr
|
||||
job: copr_build
|
||||
trigger: pull_request
|
||||
metadata:
|
||||
targets:
|
||||
- centos-stream-8-aarch64
|
||||
- centos-stream-8-x86_64
|
||||
- centos-stream-9-aarch64
|
||||
- centos-stream-9-x86_64
|
||||
- epel-8-aarch64
|
||||
- epel-8-x86_64
|
||||
- fedora-all-aarch64
|
||||
- fedora-all-s390x
|
||||
- fedora-all-ppc64le
|
||||
- fedora-all
|
||||
- job: copr_build
|
||||
targets:
|
||||
- centos-stream-8-aarch64
|
||||
- centos-stream-8-x86_64
|
||||
- centos-stream-9-aarch64
|
||||
- centos-stream-9-x86_64
|
||||
- epel-8-aarch64
|
||||
- epel-8-x86_64
|
||||
- epel-9-aarch64
|
||||
- epel-9-x86_64
|
||||
- fedora-all-aarch64
|
||||
- fedora-all-s390x
|
||||
- fedora-all-ppc64le
|
||||
- fedora-all
|
||||
- <<: *copr
|
||||
trigger: commit
|
||||
metadata:
|
||||
branch: main
|
||||
owner: "@osbuild" # copr repo namespace
|
||||
project: osbuild # copr repo name so you can consume the builds
|
||||
targets:
|
||||
- centos-stream-8-aarch64
|
||||
- centos-stream-8-x86_64
|
||||
- centos-stream-9-aarch64
|
||||
- centos-stream-9-x86_64
|
||||
- epel-8-aarch64
|
||||
- epel-8-x86_64
|
||||
- fedora-all-aarch64
|
||||
- fedora-all-s390x
|
||||
- fedora-all-ppc64le
|
||||
- fedora-all
|
||||
branch: main
|
||||
owner: "@osbuild" # copr repo namespace
|
||||
project: osbuild # copr repo name so you can consume the builds
|
||||
- job: propose_downstream
|
||||
trigger: release
|
||||
metadata:
|
||||
dist_git_branches:
|
||||
- fedora-all
|
||||
dist_git_branches:
|
||||
- fedora-all
|
||||
- job: koji_build
|
||||
trigger: commit
|
||||
metadata:
|
||||
dist_git_branches:
|
||||
- fedora-all
|
||||
dist_git_branches:
|
||||
- fedora-all
|
||||
- job: bodhi_update
|
||||
trigger: commit
|
||||
dist_git_branches:
|
||||
- fedora-branched # rawhide updates are created automatically
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
From e8c219036302817882d469400b08cbac4b93a781 Mon Sep 17 00:00:00 2001
|
||||
From: Christian Kellner <christian@kellner.me>
|
||||
Date: Fri, 20 Aug 2021 14:18:28 +0200
|
||||
Subject: [PATCH 1/3] runners: add Fedora 36 runner
|
||||
|
||||
New `org.osbuild.fedora36` which is re-using the f30 runner.
|
||||
Needed since Fedora 36 was branched already.
|
||||
---
|
||||
runners/org.osbuild.fedora36 | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
create mode 120000 runners/org.osbuild.fedora36
|
||||
|
||||
diff --git a/runners/org.osbuild.fedora36 b/runners/org.osbuild.fedora36
|
||||
new file mode 120000
|
||||
index 0000000..d46777b
|
||||
--- /dev/null
|
||||
+++ b/runners/org.osbuild.fedora36
|
||||
@@ -0,0 +1 @@
|
||||
+org.osbuild.fedora30
|
||||
\ No newline at end of file
|
||||
--
|
||||
2.21.1 (Apple Git-122.3)
|
||||
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
From 135b20a487c2b7435e296c9cfc7f96a826ba2d19 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Ond=C5=99ej=20Budai?= <ondrej@budai.cz>
|
||||
Date: Mon, 15 Aug 2022 14:13:55 +0200
|
||||
Subject: [PATCH] runners: add fedora38
|
||||
|
||||
It's that time of the year again.
|
||||
---
|
||||
runners/org.osbuild.fedora38 | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
create mode 120000 runners/org.osbuild.fedora38
|
||||
|
||||
diff --git a/runners/org.osbuild.fedora38 b/runners/org.osbuild.fedora38
|
||||
new file mode 120000
|
||||
index 0000000..d46777b
|
||||
--- /dev/null
|
||||
+++ b/runners/org.osbuild.fedora38
|
||||
@@ -0,0 +1 @@
|
||||
+org.osbuild.fedora30
|
||||
\ No newline at end of file
|
||||
--
|
||||
2.37.2
|
||||
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
This repository is maintained by packit.
|
||||
https://packit.dev/
|
||||
The file was generated using packit 0.57.1.dev6+g0146236.
|
||||
The file was generated using packit 0.86.2.post1.dev2+g209847d1.
|
||||
|
|
|
|||
BIN
osbuild-66.tar.gz
Normal file
BIN
osbuild-66.tar.gz
Normal file
Binary file not shown.
604
osbuild.spec
604
osbuild.spec
|
|
@ -1,7 +1,7 @@
|
|||
%global forgeurl https://github.com/osbuild/osbuild
|
||||
%global selinuxtype targeted
|
||||
|
||||
Version: 64
|
||||
Version: 100
|
||||
|
||||
%forgemeta
|
||||
|
||||
|
|
@ -10,14 +10,11 @@ Version: 64
|
|||
|
||||
Name: %{pypi_name}
|
||||
Release: 1%{?dist}
|
||||
License: ASL 2.0
|
||||
License: Apache-2.0
|
||||
|
||||
URL: %{forgeurl}
|
||||
|
||||
Source0: %{forgesource}
|
||||
|
||||
Patch0: 0001-runners-add-fedora38.patch
|
||||
|
||||
BuildArch: noarch
|
||||
Summary: A build system for OS images
|
||||
|
||||
|
|
@ -36,6 +33,7 @@ Requires: glibc
|
|||
Requires: policycoreutils
|
||||
Requires: qemu-img
|
||||
Requires: systemd
|
||||
Requires: skopeo
|
||||
Requires: tar
|
||||
Requires: util-linux
|
||||
Requires: python3-%{pypi_name} = %{version}-%{release}
|
||||
|
|
@ -103,7 +101,8 @@ to build OSTree based images.
|
|||
%package selinux
|
||||
Summary: SELinux policies
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildRequires: selinux-policy
|
||||
Requires: selinux-policy-%{selinuxtype}
|
||||
Requires(post): selinux-policy-%{selinuxtype}
|
||||
BuildRequires: selinux-policy-devel
|
||||
%{?selinux_requires}
|
||||
|
||||
|
|
@ -117,10 +116,24 @@ Summary: Extra tools and utilities
|
|||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: python3-pyyaml
|
||||
|
||||
# These are required for `osbuild-dev`, only packaged for Fedora
|
||||
%if 0%{?fedora}
|
||||
Requires: python3-rich
|
||||
Requires: python3-attrs
|
||||
Requires: python3-typer
|
||||
%endif
|
||||
|
||||
%description tools
|
||||
Contains additional tools and utilities for development of
|
||||
manifests and osbuild.
|
||||
|
||||
%package depsolve-dnf
|
||||
Summary: Dependency solving support for DNF
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description depsolve-dnf
|
||||
Contains depsolving capabilities for package managers.
|
||||
|
||||
%prep
|
||||
%forgeautosetup -p1
|
||||
|
||||
|
|
@ -132,14 +145,14 @@ make man
|
|||
make -f /usr/share/selinux/devel/Makefile osbuild.pp
|
||||
bzip2 -9 osbuild.pp
|
||||
|
||||
%pre
|
||||
%pre selinux
|
||||
%selinux_relabel_pre -s %{selinuxtype}
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
mkdir -p %{buildroot}%{pkgdir}/stages
|
||||
install -p -m 0755 $(find stages -type f) %{buildroot}%{pkgdir}/stages/
|
||||
install -p -m 0755 $(find stages -type f -not -name "test_*.py") %{buildroot}%{pkgdir}/stages/
|
||||
|
||||
mkdir -p %{buildroot}%{pkgdir}/assemblers
|
||||
install -p -m 0755 $(find assemblers -type f) %{buildroot}%{pkgdir}/assemblers/
|
||||
|
|
@ -176,11 +189,19 @@ install -p -m 0644 -t %{buildroot}%{_mandir}/man5/ docs/*.5
|
|||
# SELinux
|
||||
install -D -m 0644 -t %{buildroot}%{_datadir}/selinux/packages/%{selinuxtype} %{name}.pp.bz2
|
||||
install -D -m 0644 -t %{buildroot}%{_mandir}/man8 selinux/%{name}_selinux.8
|
||||
install -D -p -m 0644 selinux/osbuild.if %{buildroot}%{_datadir}/selinux/devel/include/distributed/%{name}.if
|
||||
|
||||
# Udev rules
|
||||
mkdir -p %{buildroot}%{_udevrulesdir}
|
||||
install -p -m 0755 data/10-osbuild-inhibitor.rules %{buildroot}%{_udevrulesdir}
|
||||
|
||||
# Remove `osbuild-dev` on non-fedora systems
|
||||
%{!?fedora:rm %{buildroot}%{_bindir}/osbuild-dev}
|
||||
|
||||
# Install `osbuild-depsolve-dnf` into libexec
|
||||
mkdir -p %{buildroot}%{_libexecdir}
|
||||
install -p -m 0755 tools/osbuild-depsolve-dnf %{buildroot}%{_libexecdir}/osbuild-depsolve-dnf
|
||||
|
||||
%check
|
||||
exit 0
|
||||
# We have some integration tests, but those require running a VM, so that would
|
||||
|
|
@ -233,7 +254,8 @@ exit 0
|
|||
%files selinux
|
||||
%{_datadir}/selinux/packages/%{selinuxtype}/%{name}.pp.bz2
|
||||
%{_mandir}/man8/%{name}_selinux.8.*
|
||||
%ghost %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{name}
|
||||
%{_datadir}/selinux/devel/include/distributed/%{name}.if
|
||||
%ghost %verify(not md5 size mode mtime) %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{name}
|
||||
|
||||
%post selinux
|
||||
%selinux_modules_install -s %{selinuxtype} %{_datadir}/selinux/packages/%{selinuxtype}/%{name}.pp.bz2
|
||||
|
|
@ -248,9 +270,569 @@ fi
|
|||
|
||||
%files tools
|
||||
%{_bindir}/osbuild-mpp
|
||||
%{?fedora:%{_bindir}/osbuild-dev}
|
||||
|
||||
%files depsolve-dnf
|
||||
%{_libexecdir}/osbuild-depsolve-dnf
|
||||
|
||||
%changelog
|
||||
* Wed Nov 22 2023 Packit <hello@packit.dev> - 100-1
|
||||
Changes with 100
|
||||
----------------
|
||||
* Add stages to sign ostree commits (#1445)
|
||||
* Author: Alexander Larsson, Reviewers: Achilleas Koutsou, Simon de Vlieger
|
||||
* Consolidate functions used by runners (#1446)
|
||||
* Author: Miguel Martin, Reviewers: Michael Vogt
|
||||
* RPM stage: link /proc/self/fd to /dev/fd (#1448)
|
||||
* Author: Miguel Martin, Reviewers: Simon de Vlieger
|
||||
* docs: tweak the man-page a bit to make the example more useful (#1455)
|
||||
* Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
|
||||
* schutzbot/terraform: aws instance types rework (#1436)
|
||||
* Author: Sanne Raymaekers, Reviewers: Simon de Vlieger
|
||||
* stage/test: skip kickstart validate test if no ksvalidator (#1438)
|
||||
* Author: Simon de Vlieger, Reviewers: Michael Vogt
|
||||
* stages(kickstart): add test for schema validation (#1432)
|
||||
* Author: Michael Vogt, Reviewers: Simon de Vlieger
|
||||
* stages(kickstart): add unittest test for zerombr/clearpart (#1430)
|
||||
* Author: Michael Vogt, Reviewers: Simon de Vlieger
|
||||
* stages(kickstart): ensure test inputs pass schema validation (#1440)
|
||||
* Author: Michael Vogt, Reviewers: Simon de Vlieger
|
||||
* stages(kickstart): implement "display_mode" option and tiny test addition (#1442)
|
||||
* Author: Michael Vogt, Reviewers: Simon de Vlieger
|
||||
* stages(kickstart): implement "reboot" option (#1435)
|
||||
* Author: Michael Vogt, Reviewers: Achilleas Koutsou
|
||||
* stages(kickstart): run ksvalidator as part of the tests (#1434)
|
||||
* Author: Michael Vogt, Reviewers: Achilleas Koutsou, Brian C. Lane
|
||||
* stages(kickstart): support autopart (#1449)
|
||||
* Author: Michael Vogt, Reviewers: Brian C. Lane, Simon de Vlieger
|
||||
* stages: add `org.osbuild.update-crypto-policies` stage (#1443)
|
||||
* Author: Miguel Martin, Reviewers: Achilleas Koutsou, Tomáš Hozza
|
||||
* stages: add kernel-cmdline.bls-append stage (#1429)
|
||||
* Author: Dusty Mabe, Reviewers: Achilleas Koutsou
|
||||
* tests: finish the conversion to the parametrized Fedora v2 manifest (#1441)
|
||||
* Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
|
||||
* tools: tweak `gen-stage-test-diff` to fix defaults for max-size and allow running from a git checkout (#1447)
|
||||
* Author: Michael Vogt, Reviewers: Ondřej Budai, Simon de Vlieger
|
||||
* tox: move to pylint 3.0.2 for py312 support (#1450)
|
||||
* Author: Michael Vogt, Reviewers: Simon de Vlieger
|
||||
|
||||
— Somewhere on the Internet, 2023-11-22
|
||||
|
||||
|
||||
* Wed Nov 08 2023 Packit <hello@packit.dev> - 99-1
|
||||
Changes with 99
|
||||
----------------
|
||||
* :package: Packit configuration enhancements (#1416)
|
||||
* Author: Tomáš Hozza, Reviewers: Achilleas Koutsou, Simon Steinbeiß, Simon de Vlieger
|
||||
* Add a tool script to help check for unused runners (#1367)
|
||||
* Author: Brian C. Lane, Reviewers: Simon de Vlieger
|
||||
* Add selinux-label-version to the org.osbuild.ostree.commit stage (#1415)
|
||||
* Author: Alexander Larsson, Reviewers: Colin Walters, Simon de Vlieger
|
||||
* Build rpms on RHEL-8.10 and RHEL-9.4 (#1417)
|
||||
* Author: Jakub Rusz, Reviewers: Alexander Todorov
|
||||
* Update snapshots to 20231101 (#1419)
|
||||
* Author: SchutzBot, Reviewers: Simon de Vlieger
|
||||
* depsolve-dnf: enable weak deps selection (#1413)
|
||||
* Author: Simon de Vlieger, Reviewers: Achilleas Koutsou
|
||||
* depsolve-dnf: helpful exception for repo (#1412)
|
||||
* Author: Simon de Vlieger, Reviewers: Achilleas Koutsou
|
||||
* kickstart: add support for "zerombr","clearpart" (#1426)
|
||||
* Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
|
||||
* objectstore: also mount /etc/containers for "host" buildroot (#1410)
|
||||
* Author: Dusty Mabe, Reviewers: Achilleas Koutsou
|
||||
* stage/copy: fix exception msg when parsing mounts and inputs (#1421)
|
||||
* Author: Tomáš Hozza, Reviewers: Achilleas Koutsou, Ondřej Budai
|
||||
* stages(kickstart): add options "lang", "keyboard", "timezone" (#1424)
|
||||
* Author: Michael Vogt, Reviewers: Achilleas Koutsou
|
||||
* stages/mkdir: fix its schema (#1409)
|
||||
* Author: Ondřej Budai, Reviewers: Achilleas Koutsou, Tomáš Hozza
|
||||
* stages: add new unit test for kickstart stage (#1425)
|
||||
* Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
|
||||
* tests: run the `test_stages` category in parallel (#1431)
|
||||
* Author: Michael Vogt, Reviewers: Simon de Vlieger
|
||||
* tools: add Fedora 38 runner for OSTree image tests (COMPOSER-1998) (#1427)
|
||||
* Author: Paweł Poławski, Reviewers: Ondřej Budai
|
||||
|
||||
— Somewhere on the Internet, 2023-11-08
|
||||
|
||||
|
||||
* Wed Oct 25 2023 Packit <hello@packit.dev> - 98-1
|
||||
Changes with 98
|
||||
----------------
|
||||
* Update snapshots to 20231012 (#1400)
|
||||
* Author: SchutzBot, Reviewers: Achilleas Koutsou
|
||||
* Update snapshots to 20231015 (#1403)
|
||||
* Author: SchutzBot, Reviewers: Achilleas Koutsou
|
||||
* depsolve: import `dnf-json` (#1396)
|
||||
* Author: Simon de Vlieger, Reviewers: Achilleas Koutsou
|
||||
* manifests/fedora-vars: bump snapshot date (#1408)
|
||||
* Author: Dusty Mabe, Reviewers: Simon de Vlieger
|
||||
* stages/org.osbuild.users: support multiple SSH keys (#1386)
|
||||
* Author: Michael Ho, Reviewers: Achilleas Koutsou
|
||||
* stages/oscap.remediation: Properly utilize offline capabilities (#1395)
|
||||
* Author: Evgeny Kolesnikov, Reviewers: Nobody
|
||||
* stages/ostree.deploy.container: allow deploying from container (#1402)
|
||||
* Author: Dusty Mabe, Reviewers: Nobody
|
||||
* test/stages/users: make test data date agnostic (#1406)
|
||||
* Author: Michael Ho, Reviewers: Ondřej Budai, Simon de Vlieger, Tomáš Hozza
|
||||
* tools/osbuild-mpp: Really fix empty ostree commit object in deploy stage (#1405)
|
||||
* Author: Alexander Larsson, Reviewers: Achilleas Koutsou
|
||||
* tools/osbuild-mpp: add mpp-resolve-ostree-commits helper (#1399)
|
||||
* Author: Dusty Mabe, Reviewers: Achilleas Koutsou
|
||||
|
||||
— Somewhere on the Internet, 2023-10-25
|
||||
|
||||
|
||||
* Wed Oct 11 2023 Packit <hello@packit.dev> - 97-1
|
||||
Changes with 97
|
||||
----------------
|
||||
* Support FAT FS Geometry Options (#1391)
|
||||
* Author: Maxime Ripard, Reviewers: Simon de Vlieger
|
||||
* Update Fedora 39 x86_64 runner (#1392)
|
||||
* Author: Achilleas Koutsou, Reviewers: Sanne Raymaekers
|
||||
* fix link to developer guide (#1388)
|
||||
* Author: Otto Fowler, Reviewers: Brian C. Lane
|
||||
* osbuild/util: hoist container handling code from skopeo stage into util/containers (#1389)
|
||||
* Author: Dusty Mabe, Reviewers: Achilleas Koutsou
|
||||
* refactor ostree stages; add inputs to ostree.deploy stage (#1393)
|
||||
* Author: Dusty Mabe, Reviewers: Achilleas Koutsou, Simon de Vlieger
|
||||
* stages/ostree.deploy: switch to v2 schema (#1390)
|
||||
* Author: Dusty Mabe, Reviewers: Achilleas Koutsou
|
||||
|
||||
— Somewhere on the Internet, 2023-10-11
|
||||
|
||||
|
||||
* Wed Sep 27 2023 Packit <hello@packit.dev> - 96-1
|
||||
Changes with 96
|
||||
----------------
|
||||
* docs: update the samples used in osbuild.1.rst (#1384)
|
||||
* Author: Michael Vogt, Reviewers: Sanne Raymaekers, Simon de Vlieger
|
||||
* stages/ostree.deploy: drop requirement on rootfs option (#1385)
|
||||
* Author: Dusty Mabe, Reviewers: Achilleas Koutsou, Colin Walters
|
||||
|
||||
— Somewhere on the Internet, 2023-09-27
|
||||
|
||||
|
||||
* Wed Sep 13 2023 Packit <hello@packit.dev> - 95-1
|
||||
Changes with 95
|
||||
----------------
|
||||
* Actions: add workflow for marking and closing stale issues and PRs (#1382)
|
||||
* osbuild.ostree.selinux: xref ostree issue for this (#1377)
|
||||
* runners: add autosd runner (#1381)
|
||||
|
||||
Contributions from: Colin Walters, Eric Curtin, Tomáš Hozza
|
||||
|
||||
— Somewhere on the Internet, 2023-09-13
|
||||
|
||||
|
||||
* Wed Aug 30 2023 Packit <hello@packit.dev> - 94-1
|
||||
Changes with 94
|
||||
----------------
|
||||
* .gitlab-ci: update RHEL ga runners (#1371)
|
||||
* Add support for btrfs subvolumes, metadata profiles and compression (#1312)
|
||||
* Update snapshots to 20230824 (#1373)
|
||||
* stages/dracut: add dracut omit drivers option (#1374)
|
||||
* tests/ostree-container: Drop hardcoded max layers (#1375)
|
||||
|
||||
Contributions from: Brian Masney, Colin Walters, Ondřej Budai, Sanne Raymaekers, schutzbot
|
||||
|
||||
— Somewhere on the Internet, 2023-08-30
|
||||
|
||||
|
||||
* Wed Aug 16 2023 Packit <hello@packit.dev> - 92-1
|
||||
Changes with 92
|
||||
----------------
|
||||
* Improve the linting setup (#1362)
|
||||
* Refactor Fedora test manifests v2 and update them to F38 (#1351)
|
||||
* Update fedora-39 runners and repositories (#1369)
|
||||
* Update snapshots to 20230801 (#1355)
|
||||
* Update snapshots to 20230815 (#1370)
|
||||
* autopep8: Increase aggressive level (#1361)
|
||||
* dnf4.mark: mark packages in DNF state database (#1333)
|
||||
* osbuild: add `--checkpoint` can now use globs (#1358)
|
||||
* ostree.encapsulate: It's rpm-ostree, not ostree (#1359)
|
||||
|
||||
Contributions from: Brian C. Lane, Colin Walters, Jakub Rusz, Ondřej Budai, Simon de Vlieger, schutzbot
|
||||
|
||||
— Somewhere on the Internet, 2023-08-16
|
||||
|
||||
|
||||
* Wed Aug 02 2023 Packit <hello@packit.dev> - 91-1
|
||||
Changes with 91
|
||||
----------------
|
||||
* ci: add tox (#1262)
|
||||
* tools: `osbuild-dev` quality of life (#1348)
|
||||
|
||||
Contributions from: Simon de Vlieger
|
||||
|
||||
— Somewhere on the Internet, 2023-08-02
|
||||
|
||||
|
||||
* Wed Jul 19 2023 Packit <hello@packit.dev> - 90-1
|
||||
Changes with 90
|
||||
----------------
|
||||
* .gitlab-ci.yml: Run rpmbuild for Fedora 39 (#1344)
|
||||
* Expand `sysconfig` stage with `livesys` and `desktop` (#1345)
|
||||
* Schutzfile: Fix f38 snapshot references (#1347)
|
||||
* org.osbuild.rpm: Add some context to rpmkeys failure (#1244)
|
||||
* runners: Asahi Fedora Remix to Fedora Asahi Remix (#1338)
|
||||
* stage: anaconda, allow access to more config (#1320)
|
||||
* stages/rpm: chmod `machine-id` to 0444 (#1342)
|
||||
* stages/squashfs: add support for zstd compression (#1232)
|
||||
* stages: add openscap autotailor stage (#1336)
|
||||
* test/data: introduce UKI also for CentOS Stream (#1233)
|
||||
|
||||
Contributions from: Brian C. Lane, Eric Curtin, Gianluca Zuccarelli, Ondřej Budai, Simon de Vlieger
|
||||
|
||||
— Somewhere on the Internet, 2023-07-19
|
||||
|
||||
|
||||
* Tue Jun 27 2023 Packit <hello@packit.dev> - 89-1
|
||||
Changes with 89
|
||||
----------------
|
||||
* CI variable name has changed, (#1330)
|
||||
* inputs: Move arguments for InputService.map to a temporary file (#1331)
|
||||
|
||||
Contributions from: Alexander Todorov, Ondřej Budai
|
||||
|
||||
— Somewhere on the Internet, 2023-06-27
|
||||
|
||||
|
||||
* Wed Jun 21 2023 Packit <hello@packit.dev> - 88-1
|
||||
Changes with 88
|
||||
----------------
|
||||
* COMPOSER-1959: Also test on RHEL 8.9 and 9.3 nightly (#1301)
|
||||
* Restore LOOP_CONFIGURE fallback for kernel < 5.8 (#1327)
|
||||
* stages: add new zstd stage (#1322)
|
||||
|
||||
Contributions from: Alexander Todorov, Antonio Murdaca, Michael Hofmann
|
||||
|
||||
— Somewhere on the Internet, 2023-06-21
|
||||
|
||||
|
||||
* Wed Jun 07 2023 Packit <hello@packit.dev> - 87-1
|
||||
Changes with 87
|
||||
----------------
|
||||
* Spec: use `%%forgeautosetup` macro in `%%prep` phase (#1318)
|
||||
* Support GPT partition attribute bits when creating images (#1296)
|
||||
* Test: make partitioning tools stage tests pass on RHEL-8 + add unit test for `sfdisk` stage (#1317)
|
||||
* add livesys stage (#1311)
|
||||
* mockbuild.sh: retry dnf install up to 5 times (#1319)
|
||||
* readme: mention matrix, redo headings (#1305)
|
||||
* schutzfile: update manifest-db ref 2023-06-05 (#1323)
|
||||
* stages/sgdisk: option to not quote partition names passed to sgdisk (#1316)
|
||||
|
||||
Contributions from: Eric Chanudet, SchutzBot, Simon de Vlieger, Tomáš Hozza
|
||||
|
||||
— Somewhere on the Internet, 2023-06-07
|
||||
|
||||
|
||||
* Wed May 24 2023 Packit <hello@packit.dev> - 86-1
|
||||
Changes with 86
|
||||
----------------
|
||||
* org.osbuild.mkfs.ext4: Add verity option to (#1310)
|
||||
* runners: add fedora-38 specific logic for SHA1 key support (#1307)
|
||||
* schutzfile: update manifest-db ref 2023-05-20 (#1313)
|
||||
* stages/isolinux: default list (#1309)
|
||||
|
||||
Contributions from: Alexander Larsson, Michael Ho, SchutzBot, Simon de Vlieger, Thomas Lavocat
|
||||
|
||||
— Somewhere on the Internet, 2023-05-24
|
||||
|
||||
|
||||
* Wed May 10 2023 Packit <hello@packit.dev> - 85-1
|
||||
Changes with 85
|
||||
----------------
|
||||
* COMPOSER-1959: Start building osbuild on RHEL 8.9 and 9.3 nightly (#1300)
|
||||
* Python 3.6 compatibility fixes (#1294)
|
||||
* Update terraform SHA (#1299)
|
||||
* Update test runners for 8.8 & 9.2 nightly (#1162)
|
||||
* Various fixes (#1295)
|
||||
* loop: use LOOP_CONFIGURE when available (#1253)
|
||||
* stages/org.osbuild.ovf: support older python3 versions (#1306)
|
||||
* stages/yum.repo: add `sslverify` field (#1298)
|
||||
|
||||
Contributions from: Alexander Todorov, Gianluca Zuccarelli, Jakub Rusz, Sanne Raymaekers, Thomas Lavocat, Tomáš Hozza
|
||||
|
||||
— Somewhere on the Internet, 2023-05-10
|
||||
|
||||
|
||||
* Thu Apr 27 2023 Packit <hello@packit.dev> - 84-1
|
||||
Changes with 84
|
||||
----------------
|
||||
* CI tests cleanup and maintenance (#1282)
|
||||
* Remove SSH keys of people who left the team (#1290)
|
||||
* Test: skip test cases if the tested filesystem is not supported on the platform (#1287)
|
||||
* lint: provide bandit configuration (#1265)
|
||||
* mockbuild.sh: use dnf to install local package, not rpm (#1292)
|
||||
* stages/lorax-script: minor schema adjustments (#1257)
|
||||
|
||||
Contributions from: Ondřej Budai, Simon de Vlieger, Tomáš Hozza
|
||||
|
||||
— Somewhere on the Internet, 2023-04-26
|
||||
|
||||
|
||||
* Wed Apr 12 2023 Packit <hello@packit.dev> - 83-1
|
||||
Changes with 83
|
||||
----------------
|
||||
* .gitlab-ci: drop fedora-35 (#1281)
|
||||
* .gitlab-ci: remove RHEL 8.6/9.0 ga runners (#1279)
|
||||
* Preserve manifest list digest when embedding containers (#1252)
|
||||
* WSL conf stage (#1278)
|
||||
* ci: remove codecov (#1271)
|
||||
* schutzfile: update manifest-db ref 2023-03-20 (#1260)
|
||||
* stage/systemd: be able to write a preset file (#1269)
|
||||
* stages/org.osbuild.ovf: support older python3 versions (#1276)
|
||||
|
||||
Contributions from: Achilleas Koutsou, Sanne Raymaekers, SchutzBot, Simon de Vlieger
|
||||
|
||||
— Somewhere on the Internet, 2023-04-12
|
||||
|
||||
|
||||
* Wed Mar 29 2023 Packit <hello@packit.dev> - 82-1
|
||||
Changes with 82
|
||||
----------------
|
||||
* CI: update fedora-38 images (#1273)
|
||||
* ci: update manifest tests (#1242)
|
||||
* rpmbuild: build on fedora-38 (#1268)
|
||||
* stages: add ovf stage (#1266)
|
||||
* test: this test requires to be able to bindmount (#1261)
|
||||
|
||||
Contributions from: Jakub Rusz, Sanne Raymaekers, Simon de Vlieger, Thomas Lavocat
|
||||
|
||||
— Somewhere on the Internet, 2023-03-29
|
||||
|
||||
|
||||
* Mon Feb 27 2023 Packit <hello@packit.dev> - 81-1
|
||||
Changes with 81
|
||||
----------------
|
||||
* stages/ignition: support multi kargs in network kcmdline (#1249)
|
||||
|
||||
Contributions from: Antonio Murdaca, Thomas Lavocat
|
||||
|
||||
— Somewhere on the Internet, 2023-02-27
|
||||
|
||||
|
||||
* Mon Feb 20 2023 Packit <hello@packit.dev> - 80-1
|
||||
Changes with 80
|
||||
----------------
|
||||
* stages/copy: add option to remove destination before copying (#1241)
|
||||
* stages/shell.init: add pattern for env var names (#1239)
|
||||
|
||||
Contributions from: Achilleas Koutsou, Tomáš Hozza
|
||||
|
||||
— Somewhere on the Internet, 2023-02-20
|
||||
|
||||
|
||||
* Wed Feb 15 2023 Packit <hello@packit.dev> - 79-1
|
||||
Changes with 79
|
||||
----------------
|
||||
* New stage: org.osbuild.shell.init (#1234)
|
||||
* mounts: add the norecovery option for xfs and ext4 (#1238)
|
||||
|
||||
Contributions from: Achilleas Koutsou, Thomas Lavocat
|
||||
|
||||
— Somewhere on the Internet, 2023-02-15
|
||||
|
||||
|
||||
* Tue Feb 07 2023 Packit <hello@packit.dev> - 78-1
|
||||
Changes with 78
|
||||
----------------
|
||||
* Add org.osbuild.chown stage (#1228)
|
||||
* mounts: accept a wider set of mount options (#1229)
|
||||
|
||||
Contributions from: Thomas Lavocat, Tomáš Hozza
|
||||
|
||||
— Somewhere on the Internet, 2023-02-07
|
||||
|
||||
|
||||
* Thu Jan 19 2023 Packit <hello@packit.dev> - 76-1
|
||||
Changes with 76
|
||||
----------------
|
||||
* sources/ostree: fix quotation marks in mTLS remote options (#1222)
|
||||
* stages/mkdir: explicitly set mode using `chmod` and support handling of existing directories (#1224)
|
||||
|
||||
Contributions from: Ondřej Budai, Sanne Raymaekers, Tomáš Hozza
|
||||
|
||||
— Somewhere on the Internet, 2023-01-18
|
||||
|
||||
|
||||
* Wed Jan 04 2023 Packit <hello@packit.dev> - 75-1
|
||||
Changes with 75
|
||||
----------------
|
||||
* runners: add Fedora Asahi runner (#1216)
|
||||
* stages/rhsm.facts: create facts file in /etc (#1220)
|
||||
* test/objectstore: use os.stat instead Path.stat (#1217)
|
||||
|
||||
Contributions from: Achilleas Koutsou, Christian Kellner, Eric Curtin
|
||||
|
||||
— Somewhere on the Internet, 2023-01-04
|
||||
|
||||
|
||||
|
||||
* Wed Dec 21 2022 Packit <hello@packit.dev> - 74-1
|
||||
Changes with 74
|
||||
----------------
|
||||
* Clamp mtime to `source-epoch` if specified (#1207)
|
||||
* New `ostree.encapsulate` for "native ostree containers" (#1091)
|
||||
* [v2] util/fscache: introduce versioning (#1198)
|
||||
* fscache: post-merge improvements (#1211)
|
||||
* ostree.config: add aboot (Android) bootloader config option (#1204)
|
||||
* runners: add AutoSD runner (#1210)
|
||||
* schutzbot: set the cache size for the correct store (#1199)
|
||||
* stages/users: accept identical uid for existing users (#1188)
|
||||
* test/fscache: drop PathLike annotation (#1196)
|
||||
* test/stages/users: ignore non-deterministic files (#1197)
|
||||
* test: convert objectstore test to pytest (#1201)
|
||||
* util/fscache: add cachedir-tag support (#1212)
|
||||
* util: fix typo in get_consumer_secrets (#1200)
|
||||
* 🗄Write and read metadata from the store and integrate `FsCache` into `ObjectStore` (#1187)
|
||||
|
||||
Contributions from: Christian Kellner, David Rheinsberg, Eric Curtin, Sanne Raymaekers
|
||||
|
||||
— Somewhere on the Internet, 2022-12-21
|
||||
|
||||
|
||||
|
||||
* Wed Dec 07 2022 Packit <hello@packit.dev> - 73-1
|
||||
Changes with 73
|
||||
----------------
|
||||
* cache: provide FsCache utility for concurrent caches (#1130)
|
||||
* ci: use the latest terraform to fix missing images (#1185)
|
||||
* mounts: use the options object for mountopts (#1182)
|
||||
* schutzfile: update manifest-db ref 2022-12-05 (#1194)
|
||||
|
||||
Contributions from: David Rheinsberg, SchutzBot, Thomas Lavocat
|
||||
|
||||
— Somewhere on the Internet, 2022-12-07
|
||||
|
||||
|
||||
|
||||
* Wed Nov 23 2022 Packit <hello@packit.dev> - 72-1
|
||||
Changes with 72
|
||||
----------------
|
||||
* UKI: Add support for building unified kernel images (#1167)
|
||||
* Update snapshots to 20221115 (#1177)
|
||||
* `objectstore`: use direct path input/output for `Object` (#1179)
|
||||
* `stages/containers.storage.conf`: ability to specify a base file (#1173)
|
||||
* devices: tolerate existing device nodes (#1181)
|
||||
* grub2.iso: add timeout option (#1175)
|
||||
* ignition: fix ignition_network_kcmdline (#1172)
|
||||
* test/data: persist the journal for ostree images (#1178)
|
||||
* ❌ 🐮 Remove copy-on-write support for `Object` (no-cow) (#1169)
|
||||
|
||||
Contributions from: Antonio Murdaca, Christian Kellner, Thomas Lavocat, schutzbot
|
||||
|
||||
— Somewhere on the Internet, 2022-11-23
|
||||
|
||||
|
||||
|
||||
* Wed Nov 09 2022 Packit <hello@packit.dev> - 71-1
|
||||
Changes with 71
|
||||
----------------
|
||||
* Extend firewall stage to add sources (continues from PR #1137) (#1157)
|
||||
* Update snapshots to 20221025 (#1159)
|
||||
* Update snapshots to 20221028 (#1161)
|
||||
* ci(lint): add shell linter - Differential ShellCheck (#1147)
|
||||
* ci: update to containers/privdocker@552e30c (#1166)
|
||||
* ci: upgrade to actions/checkout@v3 (#1165)
|
||||
* osbuild-dev: a new tool to help with manifests (#1152)
|
||||
* osbuild-mpp: recognize manifest without mediaType and with manifests fields as a list (#1168)
|
||||
* stages/ostree.preptree: link to rpm-ostree code (#1151)
|
||||
* stages: add new cpio.out stage (#1164)
|
||||
Contributions from: Antonio Murdaca, Christian Kellner, Colin Walters, David Rheinsberg, Irene Diez, Jan Macku, Simon de Vlieger, Ygal Blum, schutzbot
|
||||
— Somewhere on the Internet, 2022-11-09
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* Wed Oct 26 2022 Packit <hello@packit.dev> - 70-1
|
||||
Changes with 70
|
||||
----------------
|
||||
* Build rpms on RHEL 8.8 and 9.2 (#1141)
|
||||
* packit: Replace deprecated config options (#1145)
|
||||
* schutzbot/mockbuild: stop running mock as root (#1148)
|
||||
* schutzfile: update manifest-db ref 2022-10-20 (#1155)
|
||||
* sources/ostree: set contenturl when pulling from remote (#1140)
|
||||
* stages/keymap: add font option (#1158)
|
||||
* stages/logind-systemd: add `ReserveVT` option (#1156)
|
||||
* stages/rpm: make the fake machine-id newline-terminated (#1150)
|
||||
* stages: add systemd-journald stage (#1143)
|
||||
* test: add README.md on how to make tests for stages (#1149)
|
||||
Contributions from: Christian Kellner, Irene Diez, Jakub Rusz, Jan Macku, Ondřej Budai, Sanne Raymaekers, SchutzBot
|
||||
— Somewhere on the Internet, 2022-10-26
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* Wed Oct 12 2022 Packit <hello@packit.dev> - 69-1
|
||||
Changes with 69
|
||||
----------------
|
||||
* runners: auto detection based on best matching distro+version (#996)
|
||||
* sources/ostree: pull from remote using rhsm mTLS certs (#1138)
|
||||
* stages: fix ostree config stage (#1129)
|
||||
Contributions from: Antonio Murdaca, Christian Kellner, Sanne Raymaekers
|
||||
— Somewhere on the Internet, 2022-10-12
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* Wed Sep 28 2022 Packit <hello@packit.dev> - 68-1
|
||||
Changes with 68
|
||||
----------------
|
||||
* manifest-db: propage the osbuild SHA on manifest-db (#1124)
|
||||
* packit: Enable Bodhi updates for unstable Fedoras (#1128)
|
||||
* packit: add epel-9 to copr_build (#1118)
|
||||
* selinux: Update based on latest packaging guide (#1127)
|
||||
* stages/greenboot: avoid new pylint suppressions (#1114)
|
||||
* test/src: improve file enumeration (#1106)
|
||||
Contributions from: David Rheinsberg, Ondřej Budai, Simon Steinbeiss, Thomas Lavocat, Vit Mojzis
|
||||
— Somewhere on the Internet, 2022-09-28
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* Wed Sep 14 2022 Packit <hello@packit.dev> - 67-1
|
||||
Changes with 67
|
||||
----------------
|
||||
* Quote URL paths before downloading in curl source (#1100)
|
||||
* Use isort to sort all imports (#1087)
|
||||
* ci: remove the composer image test (#1110)
|
||||
* org.osbuild.oci-archive: Support setting Entrypoint (#1103)
|
||||
* osbuild-mpp: Add url option to mpp-embed (#1104)
|
||||
* osbuild-mpp: fix minor issues and coding-style (#1112)
|
||||
* osbuild: explicit encodings for `open()` (#1108)
|
||||
* osbuild: pylint version fixes (#1094)
|
||||
* osbuild: share terminal formats between files (#1072)
|
||||
* packit: Enable Bodhi updates workflow (#1102)
|
||||
* rpmbuild: add fedora-37 (#1101)
|
||||
* test: run mypy in test-src not in GH actions (#1093)
|
||||
* tree: fix newer pylint warnings (#1107)
|
||||
Contributions from: Achilleas Koutsou, Alexander Larsson, David Rheinsberg, Simon Steinbeiss, Simon de Vlieger, Thomas Lavocat, Ygal Blum
|
||||
— Somewhere on the Internet, 2022-09-14
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* Fri Aug 26 2022 Packit <hello@packit.dev> - 65-1
|
||||
Changes with 65
|
||||
----------------
|
||||
* Add greenboot configuration management via osbuild (#1086)
|
||||
* Add new properties to ostree.remotes stage: gpgkeypath and contenturl (#1097)
|
||||
* pipeline: include mounts in stage checksum (#1098)
|
||||
* runners: add fedora38 (#1092)
|
||||
Contributions from: Achilleas Koutsou, Christian Kellner, Ondřej Budai, Sayan Paul
|
||||
— Somewhere on the Internet, 2022-08-26
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* Wed Aug 17 2022 Packit <hello@packit.dev> - 64-1
|
||||
Changes with 64
|
||||
----------------
|
||||
|
|
@ -260,13 +842,13 @@ Changes with 64
|
|||
* `stages/gcp.guest-agent.conf`: various small fixes (#1081)
|
||||
* osbuild-mpp: Allow use of mpp-* operations for stages (#1084)
|
||||
* stages/rpm: allow setting the dbpath (#666)
|
||||
|
||||
Contributions from: Alexander Larsson, Christian Kellner, fkolwa
|
||||
|
||||
— Somewhere on the Internet, 2022-08-17
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* Wed Aug 03 2022 Packit <hello@packit.dev> - 63-1
|
||||
Changes with 63
|
||||
----------------
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (osbuild-64.tar.gz) = 24d2c58cf70385275a0dfd9ca7d56ff74e71f9aad082adc23a30506ec34ab90273d1d4f2eb4690dd31c7ae35247a7f45a17fa1f3bf828435c454603f21b06dda
|
||||
SHA512 (osbuild-100.tar.gz) = 91c350af779e0c35b13ae4cb892a6d6319082a5fc6579e245014ce32bbd0d235bf023a71d4478964797b5be53bf2f73738b141661e069de5be8d929fe2a7d39a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue