Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
63f3ecfa38 | ||
| 83386e910b |
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
SOURCES/ignition-2.26.0.tar.gz
|
gptfdisk-1.0.10.tar.gz
|
||||||
SOURCES/ignition-edge-b8d1b7a.tar.gz
|
ignition-2.26.0.tar.gz
|
||||||
|
ignition-edge-b8d1b7a.tar.gz
|
||||||
|
|||||||
@ -1,2 +0,0 @@
|
|||||||
dc3435c8edfcc34fad5f53c4258d7e1e1381ce5b SOURCES/ignition-2.26.0.tar.gz
|
|
||||||
0069b62bce8673f82ac6a4b9959ec8db4ffed8ad SOURCES/ignition-edge-b8d1b7a.tar.gz
|
|
||||||
@ -1,3 +1,13 @@
|
|||||||
|
## START: Set by rpmautospec
|
||||||
|
## (rpmautospec version 0.6.5)
|
||||||
|
## RPMAUTOSPEC: autorelease, autochangelog
|
||||||
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||||
|
release_number = 2;
|
||||||
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||||
|
print(release_number + base_release_number - 1);
|
||||||
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||||
|
## END: Set by rpmautospec
|
||||||
|
|
||||||
# Generated by go2rpm 1.3
|
# Generated by go2rpm 1.3
|
||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
%bcond_without check
|
%bcond_without check
|
||||||
@ -10,6 +20,9 @@
|
|||||||
%global ignedgecommit b8d1b7a52c28fd5c33d15a0628d4b69f242f5c57
|
%global ignedgecommit b8d1b7a52c28fd5c33d15a0628d4b69f242f5c57
|
||||||
%global ignedgeshortcommit %(c=%{ignedgecommit}; echo ${c:0:7})
|
%global ignedgeshortcommit %(c=%{ignedgecommit}; echo ${c:0:7})
|
||||||
|
|
||||||
|
# For vendored gdisk
|
||||||
|
%global gdiskversion 1.0.10
|
||||||
|
|
||||||
# https://github.com/coreos/ignition
|
# https://github.com/coreos/ignition
|
||||||
%global goipath github.com/coreos/ignition
|
%global goipath github.com/coreos/ignition
|
||||||
%global gomodulesmode GO111MODULE=on
|
%global gomodulesmode GO111MODULE=on
|
||||||
@ -22,14 +35,17 @@ Version: 2.26.0
|
|||||||
%global dracutlibdir %{_prefix}/lib/dracut
|
%global dracutlibdir %{_prefix}/lib/dracut
|
||||||
|
|
||||||
Name: ignition
|
Name: ignition
|
||||||
Release: 1%{?dist}
|
Release: %autorelease
|
||||||
Summary: First boot installer and configuration tool (RHEL CoreOS only)
|
Summary: First boot installer and configuration tool
|
||||||
|
|
||||||
# Upstream license specification: Apache-2.0
|
# Upstream license specification: Apache-2.0
|
||||||
License: ASL 2.0
|
# gdisk: GPL-2.0-or-later
|
||||||
|
License: Apache-2.0 AND GPL-2.0-or-later
|
||||||
URL: %{gourl}
|
URL: %{gourl}
|
||||||
Source0: %{gosource}
|
Source0: %{gosource}
|
||||||
Source1: https://github.com/fedora-iot/ignition-edge/archive/%{ignedgecommit}/ignition-edge-%{ignedgeshortcommit}.tar.gz
|
Source1: https://github.com/fedora-iot/ignition-edge/archive/%{ignedgecommit}/ignition-edge-%{ignedgeshortcommit}.tar.gz
|
||||||
|
# For vendored gdisk
|
||||||
|
Source2: http://downloads.sourceforge.net/gptfdisk/gptfdisk-%{gdiskversion}.tar.gz
|
||||||
|
|
||||||
BuildRequires: libblkid-devel
|
BuildRequires: libblkid-devel
|
||||||
BuildRequires: systemd-rpm-macros
|
BuildRequires: systemd-rpm-macros
|
||||||
@ -39,11 +55,17 @@ BuildRequires: systemd-rpm-macros
|
|||||||
Recommends: btrfs-progs
|
Recommends: btrfs-progs
|
||||||
%endif
|
%endif
|
||||||
Requires: dosfstools
|
Requires: dosfstools
|
||||||
Requires: gdisk
|
|
||||||
Requires: dracut
|
Requires: dracut
|
||||||
Requires: dracut-network
|
Requires: dracut-network
|
||||||
|
|
||||||
Obsoletes: ignition-dracut < 0.31.0-3
|
%if 0%{?rhel} && 0%{?rhel} == 10
|
||||||
|
# For vendored gdisk
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: libuuid-devel
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: ncurses-devel
|
||||||
|
BuildRequires: popt-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
# Generated by `go-mods-to-bundled-provides.py | sort`
|
# Generated by `go-mods-to-bundled-provides.py | sort`
|
||||||
Provides: bundled(golang(cloud.google.com/go/compute/metadata)) = 0.9.0
|
Provides: bundled(golang(cloud.google.com/go/compute/metadata)) = 0.9.0
|
||||||
@ -179,8 +201,6 @@ Provides: bundled(golang(google.golang.org/api/transport/http)) = 0.257.0
|
|||||||
Provides: bundled(golang(gopkg.in/yaml.v3)) = 3.0.1
|
Provides: bundled(golang(gopkg.in/yaml.v3)) = 3.0.1
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This software is currently only supported on RHEL CoreOS.
|
|
||||||
|
|
||||||
Ignition is a utility used to manipulate systems during the initramfs.
|
Ignition is a utility used to manipulate systems during the initramfs.
|
||||||
This includes partitioning disks, formatting partitions, writing files
|
This includes partitioning disks, formatting partitions, writing files
|
||||||
(regular files, systemd units, etc.), and configuring users. On first
|
(regular files, systemd units, etc.), and configuring users. On first
|
||||||
@ -193,9 +213,7 @@ the configuration.
|
|||||||
%package validate
|
%package validate
|
||||||
|
|
||||||
Summary: Validation tool for Ignition configs
|
Summary: Validation tool for Ignition configs
|
||||||
License: ASL 2.0
|
License: Apache-2.0
|
||||||
|
|
||||||
Conflicts: ignition < 0.31.0-3
|
|
||||||
|
|
||||||
%description validate
|
%description validate
|
||||||
Ignition is a utility used to manipulate systems during the initramfs.
|
Ignition is a utility used to manipulate systems during the initramfs.
|
||||||
@ -213,11 +231,9 @@ This package contains a tool for validating Ignition configurations.
|
|||||||
%package validate-redistributable
|
%package validate-redistributable
|
||||||
|
|
||||||
Summary: Statically linked validation tool for Ignition configs
|
Summary: Statically linked validation tool for Ignition configs
|
||||||
License: ASL 2.0
|
License: Apache-2.0
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Conflicts: ignition < 0.31.0-3
|
|
||||||
|
|
||||||
# In case someone has this subpackage installed, obsolete the old name
|
# In case someone has this subpackage installed, obsolete the old name
|
||||||
# Drop in Fedora 38
|
# Drop in Fedora 38
|
||||||
Obsoletes: ignition-validate-nonlinux < 2.13.0-4
|
Obsoletes: ignition-validate-nonlinux < 2.13.0-4
|
||||||
@ -229,6 +245,7 @@ It is only used for building release binaries to be signed by Fedora release
|
|||||||
engineering and uploaded to the Ignition GitHub releases page.
|
engineering and uploaded to the Ignition GitHub releases page.
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
############## grub subpackage ##############
|
############## grub subpackage ##############
|
||||||
|
|
||||||
%package grub
|
%package grub
|
||||||
@ -243,16 +260,14 @@ This package contains the grub2 config which is compatable with bootupd.
|
|||||||
|
|
||||||
############## ignition-edge subpackage ##############
|
############## ignition-edge subpackage ##############
|
||||||
|
|
||||||
%if 0%{?rhel} && !0%{?eln}
|
|
||||||
%package edge
|
%package edge
|
||||||
|
|
||||||
Summary: Enablement glue for Ignition on IoT/Edge systems
|
Summary: Enablement glue for Ignition on IoT/Edge systems
|
||||||
License: ASL 2.0
|
License: Apache-2.0
|
||||||
|
|
||||||
%description edge
|
%description edge
|
||||||
This package contains dracut modules, services and binaries needed to enable
|
This package contains dracut modules, services and binaries needed to enable
|
||||||
Ignition on IoT/Edge systems.
|
Ignition on IoT/Edge systems.
|
||||||
%endif
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
@ -260,7 +275,13 @@ Ignition on IoT/Edge systems.
|
|||||||
%autopatch -p1
|
%autopatch -p1
|
||||||
%else
|
%else
|
||||||
%forgeautosetup -p1
|
%forgeautosetup -p1
|
||||||
|
%endif
|
||||||
|
|
||||||
tar xvf %{SOURCE1}
|
tar xvf %{SOURCE1}
|
||||||
|
|
||||||
|
%if 0%{?rhel} && 0%{?rhel} == 10
|
||||||
|
# Prep vendored gdisk
|
||||||
|
tar xvf %{SOURCE2}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -281,7 +302,6 @@ GOEXPERIMENT=strictfipsruntime %gobuild -o ./ignition internal/main.go
|
|||||||
echo "Building ignition-validate..."
|
echo "Building ignition-validate..."
|
||||||
%gobuild -o ./ignition-validate validate/main.go
|
%gobuild -o ./ignition-validate validate/main.go
|
||||||
|
|
||||||
|
|
||||||
%global gocrossbuild go build -ldflags "${LDFLAGS:-} -B 0x$(cat /dev/urandom | tr -d -c '0-9a-f' | head -c16)" -a -v -x
|
%global gocrossbuild go build -ldflags "${LDFLAGS:-} -B 0x$(cat /dev/urandom | tr -d -c '0-9a-f' | head -c16)" -a -v -x
|
||||||
|
|
||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
@ -299,6 +319,12 @@ echo "Building Windows ignition-validate..."
|
|||||||
GOEXPERIMENT= GOARCH=amd64 GOOS=windows %gocrossbuild -o ./ignition-validate-x86_64-pc-windows-gnu.exe validate/main.go
|
GOEXPERIMENT= GOARCH=amd64 GOOS=windows %gocrossbuild -o ./ignition-validate-x86_64-pc-windows-gnu.exe validate/main.go
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?rhel} && 0%{?rhel} == 10
|
||||||
|
# Build vendored gdisk
|
||||||
|
cd gptfdisk-%{gdiskversion}
|
||||||
|
make CXXFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" LDFLAGS="%{build_ldflags}"
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
# dracut modules
|
# dracut modules
|
||||||
install -d -p %{buildroot}/%{dracutlibdir}/modules.d
|
install -d -p %{buildroot}/%{dracutlibdir}/modules.d
|
||||||
@ -308,7 +334,6 @@ install -m 0755 -d %{buildroot}/%{_libexecdir}
|
|||||||
ln -sf ../lib/dracut/modules.d/30ignition/ignition %{buildroot}/%{_libexecdir}/ignition-apply
|
ln -sf ../lib/dracut/modules.d/30ignition/ignition %{buildroot}/%{_libexecdir}/ignition-apply
|
||||||
ln -sf ../lib/dracut/modules.d/30ignition/ignition %{buildroot}/%{_libexecdir}/ignition-rmcfg
|
ln -sf ../lib/dracut/modules.d/30ignition/ignition %{buildroot}/%{_libexecdir}/ignition-rmcfg
|
||||||
|
|
||||||
|
|
||||||
# grub
|
# grub
|
||||||
install -d -p %{buildroot}%{_prefix}/lib/bootupd/grub2-static/configs.d
|
install -d -p %{buildroot}%{_prefix}/lib/bootupd/grub2-static/configs.d
|
||||||
install -p -m 0644 grub2/05_ignition.cfg %{buildroot}%{_prefix}/lib/bootupd/grub2-static/configs.d/
|
install -p -m 0644 grub2/05_ignition.cfg %{buildroot}%{_prefix}/lib/bootupd/grub2-static/configs.d/
|
||||||
@ -332,8 +357,13 @@ install -p -m 0644 ./ignition-validate-x86_64-unknown-linux-gnu-static %{buildro
|
|||||||
# the command line. Install directly into the dracut module dir.
|
# the command line. Install directly into the dracut module dir.
|
||||||
install -p -m 0755 ./ignition %{buildroot}/%{dracutlibdir}/modules.d/30ignition
|
install -p -m 0755 ./ignition %{buildroot}/%{dracutlibdir}/modules.d/30ignition
|
||||||
|
|
||||||
%if 0%{?rhel} && !0%{?eln}
|
|
||||||
%make_install -C ignition-edge-%{ignedgecommit}
|
%make_install -C ignition-edge-%{ignedgecommit}
|
||||||
|
|
||||||
|
%if 0%{?rhel} && 0%{?rhel} == 10
|
||||||
|
# Install vendored gdisk
|
||||||
|
cd gptfdisk-%{gdiskversion}
|
||||||
|
install -D -p -m 0755 sgdisk %{buildroot}%{_libexecdir}/ignition-sgdisk
|
||||||
|
install -D -p -m 644 COPYING %{buildroot}%{_datadir}/licenses/gdisk/COPYING
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{with check}
|
%if %{with check}
|
||||||
@ -349,6 +379,9 @@ install -p -m 0755 ./ignition %{buildroot}/%{dracutlibdir}/modules.d/30ignition
|
|||||||
%{_unitdir}/ignition-delete-config.service
|
%{_unitdir}/ignition-delete-config.service
|
||||||
%{_libexecdir}/ignition-apply
|
%{_libexecdir}/ignition-apply
|
||||||
%{_libexecdir}/ignition-rmcfg
|
%{_libexecdir}/ignition-rmcfg
|
||||||
|
# Vendored gdisk
|
||||||
|
%{_libexecdir}/ignition-sgdisk
|
||||||
|
%{_datadir}/licenses/gdisk/COPYING
|
||||||
|
|
||||||
%files validate
|
%files validate
|
||||||
%doc README.md
|
%doc README.md
|
||||||
@ -368,12 +401,6 @@ install -p -m 0755 ./ignition %{buildroot}/%{dracutlibdir}/modules.d/30ignition
|
|||||||
%{_datadir}/ignition/ignition-validate-x86_64-unknown-linux-gnu-static
|
%{_datadir}/ignition/ignition-validate-x86_64-unknown-linux-gnu-static
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files grub
|
|
||||||
%doc README.md
|
|
||||||
%license %{golicenses}
|
|
||||||
%{_prefix}/lib/bootupd/grub2-static/configs.d/05_ignition.cfg
|
|
||||||
|
|
||||||
%if 0%{?rhel} && !0%{?eln}
|
|
||||||
%files edge
|
%files edge
|
||||||
%license %{golicenses}
|
%license %{golicenses}
|
||||||
%doc %{godocs}
|
%doc %{godocs}
|
||||||
@ -386,105 +413,171 @@ install -p -m 0755 ./ignition %{buildroot}/%{dracutlibdir}/modules.d/30ignition
|
|||||||
%{_unitdir}/ignition-firstboot-complete.service
|
%{_unitdir}/ignition-firstboot-complete.service
|
||||||
%{_libexecdir}/coreos-ignition-write-issues
|
%{_libexecdir}/coreos-ignition-write-issues
|
||||||
%{_libexecdir}/coreos-check-ssh-keys
|
%{_libexecdir}/coreos-check-ssh-keys
|
||||||
%endif
|
|
||||||
|
%files grub
|
||||||
|
%doc README.md
|
||||||
|
%license %{golicenses}
|
||||||
|
%{_prefix}/lib/bootupd/grub2-static/configs.d/05_ignition.cfg
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Mar 09 2026 Yasmin de Souza <ydesouza@redhat.com> - 2.26.0-1
|
## START: Generated by rpmautospec
|
||||||
- new version
|
* Fri Mar 20 2026 Steven Presti <spresti@redhat.com> - 2.26.0-2
|
||||||
|
- spec: rebuild for 10.2
|
||||||
|
|
||||||
* Mon Jan 12 2026 Yasmin de Souza <ydesouza@redhat.com> - 2.25.1-1
|
* Wed Mar 11 2026 Yasmin de Souza <ydesouza@redhat.com> - 2.26.0-1
|
||||||
- new version
|
- spec: new upstream version 2.26.0
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 Yasmin de Souza <ydesouza@redhat.com> - 2.25.1-1
|
||||||
|
- spec: new upstream version 2.25.1
|
||||||
|
|
||||||
* Fri Oct 17 2025 Steven Presti <spresti@redhat.com> - 2.24.0-1
|
* Fri Oct 17 2025 Steven Presti <spresti@redhat.com> - 2.24.0-1
|
||||||
- new version
|
- spec: new upstream version 2.24.0
|
||||||
|
|
||||||
* Wed Oct 01 2025 Steven Presti <spresti@redhat.com> - 2.23.0-2
|
* Wed Oct 01 2025 Steven Presti <spresti@redhat.com> - 2.23.0-2
|
||||||
- Build Ignition with GOEXPERIMENT=strictfipsruntime
|
- spec: rebuild ignition with goexperiment=strictfipsruntime
|
||||||
- Ignition-validate non-FIPS
|
|
||||||
|
|
||||||
* Wed Sep 17 2025 yasminvalim <ydesouza@redhat.com> - 2.23.0-1
|
* Wed Sep 17 2025 yasminvalim <ydesouza@redhat.com> - 2.23.0-1
|
||||||
- new version
|
- spec: new upstream version 2.23.0
|
||||||
|
|
||||||
* Wed Jul 16 2025 Tiago Bueno <tbueno@redhat.com> - 2.22.0-1
|
* Mon Jul 21 2025 Tiago Bueno <tbueno@redhat.com> - 2.22.0-1
|
||||||
|
- spec: new upstream version 2.22.0
|
||||||
|
|
||||||
|
* Tue Jun 03 2025 Tiago Bueno <tbueno@redhat.com> - 2.21.0-5
|
||||||
|
- Fix TMT prepare plans
|
||||||
|
|
||||||
|
* Mon May 19 2025 Tiago Bueno <tbueno@redhat.com> - 2.21.0-4
|
||||||
|
- Add initial TMT Gating Test
|
||||||
|
|
||||||
|
* Thu Mar 27 2025 Joseph Marrero Corchado <jmarrero@redhat.com> - 2.21.0-3
|
||||||
|
- Resolves: #RHEL-85233
|
||||||
|
|
||||||
|
* Mon Mar 24 2025 Yasmin Valim <ydesouza@redhat.com> - 2.21.0-2
|
||||||
|
- Ignition.cfg -> 05_ignition.cfg rename
|
||||||
|
|
||||||
|
* Fri Mar 21 2025 Yasmin Valim <ydesouza@redhat.com> - 2.21.0-1
|
||||||
|
- spec: new upstream version 2.21.0
|
||||||
|
|
||||||
|
* Mon Nov 04 2024 Steven Prestil <spresti@redhat.com> - 2.20.0-1
|
||||||
- New release
|
- New release
|
||||||
|
|
||||||
* Mon Mar 24 2025 Yasmin Valim <ydesouza@redhat.com> - 2.21.0-1
|
* Thu Sep 26 2024 Joseph Marrero <jmarrero@fedoraproject.org> - 2.19.0-1
|
||||||
- Re-sync with upstream changes adding ignition-grub subpackage
|
- Rebase to https://github.com/coreos/ignition/releases/tag/v2.19.0
|
||||||
and a few minor changes
|
- Update ignition-edge commit https://github.com/fedora-iot/ignition-edge/pull/2
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Timothée Ravier <tim@siosm.fr> - 2.17.0-7
|
||||||
|
- Vendor gdisk
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Timothée Ravier <tim@siosm.fr> - 2.17.0-6
|
||||||
|
- Remove gdisk require to prepare for the sfdisk migration
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2.17.0-5
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Dec 15 2023 Steven Prestil <spresti@redhat.com> - 2.17.0-2
|
||||||
|
- Add ignition-grub subpackage
|
||||||
|
|
||||||
|
* Wed Nov 22 2023 Steven Prestil <spresti@redhat.com> - 2.17.0-1
|
||||||
- New release
|
- New release
|
||||||
|
|
||||||
* Mon Nov 04 2024 Steven Presti <spresti@redhat.com> - 2.20.0-1
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.16.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 12 2023 Benjamin Gilbert <bgilbert@redhat.com> - 2.16.2-1
|
||||||
- New release
|
- New release
|
||||||
|
|
||||||
* Mon Sep 09 2024 Miguel Martín <mmartinv@redhat.com> - 2.19.0-3
|
* Mon Jul 10 2023 Benjamin Gilbert <bgilbert@redhat.com> - 2.16.1-1
|
||||||
- Update ignition-edge commit to support FIPS
|
|
||||||
- https://github.com/fedora-iot/ignition-edge/pull/2
|
|
||||||
|
|
||||||
* Tue Jul 02 2024 Joseph Marrero <jmarrero@fedoraproject.org> - 2.19.0-2
|
|
||||||
- Rebuild of 2.19.0 with a newer golang
|
|
||||||
|
|
||||||
* Wed Jun 12 2024 Steven Presti <spresti@redhat.com> - 2.19.0-1
|
|
||||||
- New release
|
- New release
|
||||||
|
|
||||||
* Thu Mar 07 2024 Yasmin Valim <ydesouza@redhat.com> - 2.18.0-1
|
* Thu Jun 1 2023 Steven Presti <spresti@redhat.com> - 2.15.0-4
|
||||||
|
- Switch License tags to SPDX
|
||||||
|
|
||||||
|
* Thu Feb 23 2023 Benjamin Gilbert <bgilbert@redhat.com> - 2.15.0-3
|
||||||
|
- Remove ignition-edge files from base package
|
||||||
|
|
||||||
|
* Wed Feb 22 2023 Paul Whalen <pwhalen@fedoraproject.org> - 2.15.0-2
|
||||||
|
- Enable ignition-edge in Fedora
|
||||||
|
|
||||||
|
* Tue Feb 21 2023 Benjamin Gilbert <bgilbert@redhat.com> - 2.15.0-1
|
||||||
- New release
|
- New release
|
||||||
|
- Drop Conflicts/Obsoletes for ancient Ignition releases
|
||||||
|
|
||||||
* Fri Feb 09 2024 Timothée Ravier <tim@siosm.fr> - 2.17.0-2
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.14.0-6
|
||||||
- Backport fix for unexpected Azure IMDS status codes
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
* Mon Dec 18 2023 Yasmin Valim <ydesouza@redhat.com> - 2.17.0-1
|
* Tue Aug 9 2022 Christian Glombek <cglombek@redhat.com> - 2.14.0-5
|
||||||
- New release
|
|
||||||
|
|
||||||
* Thu Jul 13 2023 Benjamin Gilbert <bgilbert@redhat.com> - 2.16.2-1
|
|
||||||
- New release
|
|
||||||
|
|
||||||
* Tue May 30 2023 Antonio Murdaca <antoniomurdaca@gmail.com> - 2.15.0-2
|
|
||||||
- Fix Edge's Anaconda installer (#2203233)
|
|
||||||
|
|
||||||
* Wed Feb 22 2023 Benjamin Gilbert <bgilbert@redhat.com> - 2.15.0-1
|
|
||||||
- New release
|
|
||||||
- Clarify -edge subpackage summary and description
|
|
||||||
|
|
||||||
* Tue Nov 22 2022 Antonio Murdaca <antoniomurdaca@gmail.com> - 2.14.0-4
|
|
||||||
- Rebuild to include ignition-edge subpackage (#2144789)
|
|
||||||
|
|
||||||
* Mon Oct 10 2022 Benjamin Gilbert <bgilbert@redhat.com> - 2.14.0-3
|
|
||||||
- Rebuild for unblocking ignition-validate subpackage (#2121002)
|
|
||||||
|
|
||||||
* Tue Aug 9 2022 Christian Glombek <cglombek@redhat.com> - 2.14.0-2
|
|
||||||
- Enable writing ssh keys fragments on RHEL/CentOS >= 9
|
- Enable writing ssh keys fragments on RHEL/CentOS >= 9
|
||||||
|
|
||||||
* Thu May 26 2022 Benjamin Gilbert <bgilbert@redhat.com> - 2.14.0-1
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.14.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 27 2022 Benjamin Gilbert <bgilbert@redhat.com> - 2.14.0-3
|
||||||
|
- Add macOS aarch64 binary to -redistributable
|
||||||
|
|
||||||
|
* Sat Jun 18 2022 Robert-André Mauchin <zebob.m@gmail.com> - 2.14.0-2
|
||||||
|
- Rebuilt for CVE-2022-1996, CVE-2022-24675, CVE-2022-28327, CVE-2022-27191,
|
||||||
|
CVE-2022-29526, CVE-2022-30629
|
||||||
|
|
||||||
|
* Mon May 16 2022 Steven Presti <spresti@redhat.com> - 2.14.0-1
|
||||||
- New release
|
- New release
|
||||||
- Add ignition-apply symlink
|
- Add ignition-apply symlink
|
||||||
- Add ignition-rmcfg symlink and ignition-delete-config.service
|
- Add ignition-rmcfg symlink and ignition-delete-config.service
|
||||||
|
|
||||||
* Mon Mar 21 2022 Sohan Kunkerkar <skunkerk@redhat.com> - 2.13.0-2
|
* Thu Mar 17 2022 Sohan Kunkerkar <skunkerk@redhat.com> - 2.13.0-5
|
||||||
|
- Avoid kernel lockdown on VMware when running with secure boot
|
||||||
|
|
||||||
|
* Fri Jan 28 2022 Benjamin Gilbert <bgilbert@redhat.com> - 2.13.0-4
|
||||||
- Rename -validate-nonlinux subpackage to -validate-redistributable
|
- Rename -validate-nonlinux subpackage to -validate-redistributable
|
||||||
- Add static Linux binaries to -redistributable
|
- Add static Linux binaries to -redistributable
|
||||||
- Fix macro invocation in comment
|
- Fix macro invocation in comment
|
||||||
- Avoid kernel lockdown on VMware when running with secure boot
|
|
||||||
|
|
||||||
* Thu Jan 20 2022 Benjamin Gilbert <bgilbert@redhat.com> - 2.13.0-1
|
* Thu Jan 20 2022 Benjamin Gilbert <bgilbert@redhat.com> - 2.13.0-3
|
||||||
- New release
|
|
||||||
- Fix LUKS volume reuse
|
- Fix LUKS volume reuse
|
||||||
- Avoid double patch application
|
- Avoid double patch application on non-Fedora
|
||||||
|
|
||||||
* Thu Sep 16 2021 Sohan Kunkerkar <skunkerk@redhat.com> - 2.12.0-1
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.0-2
|
||||||
- Suppress hardcoded library path warning
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
- Fix go-mods-to-bundled-provides script to parse correct rpm version
|
|
||||||
- Import specfile from Fedora
|
|
||||||
|
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.9.0-7
|
* Tue Nov 30 2021 Sohan Kunkerkar <skunkerk@redhat.com> - 2.13.0-1
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- New release
|
||||||
Related: rhbz#1991688
|
|
||||||
|
|
||||||
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 2.9.0-6
|
* Wed Oct 13 2021 Sohan Kunkerkar <skunkerk@redhat.com> - 2.12.0-3
|
||||||
- Rebuilt for RHEL 9 BETA for openssl 3.0
|
- Move Ignition report to /etc
|
||||||
Related: rhbz#1971065
|
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.9.0-5
|
* Thu Aug 26 2021 Sohan Kunkerkar <skunkerk@redhat.com> - 2.12.0-2
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
- Disable file fragment writing logic for SSH authorized_keys on RHEL/CentOS
|
||||||
|
- Disable compressdwarf flag to avoid build failures on RHEL/CentOS
|
||||||
|
- Disable cross-building of Ignition-validate on RHEL/CentOS
|
||||||
|
- Conditionalize Fedora-specific configuration
|
||||||
|
|
||||||
|
* Fri Aug 6 2021 Sohan Kunkerkar <skunkerk@redhat.com> - 2.12.0-1
|
||||||
|
- New release
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 8 2021 Benjamin Gilbert <bgilbert@redhat.com> - 2.11.0-2
|
||||||
|
- Move ignition-firstboot-complete and ignition-setup-user services out of
|
||||||
|
package into distro glue
|
||||||
|
|
||||||
|
* Fri Jun 25 2021 Benjamin Gilbert <bgilbert@redhat.com> - 2.11.0-1
|
||||||
|
- New release
|
||||||
|
|
||||||
|
* Wed May 26 2021 Jonathan Lebon <jonathan@jlebon.com> - 2.10.1-3
|
||||||
|
- Backport patch for multipath on firstboot
|
||||||
|
https://github.com/coreos/ignition/pull/1208
|
||||||
|
https://github.com/coreos/fedora-coreos-config/pull/1011
|
||||||
|
|
||||||
|
* Wed May 26 2021 Jonathan Lebon <jonathan@jlebon.com> - 2.10.1-2
|
||||||
|
- Redo packaging using go2rpm
|
||||||
|
|
||||||
|
* Thu Apr 29 2021 Stephen Lowrie <slowrie@redhat.com> - 2.10.1-1
|
||||||
|
- New release
|
||||||
|
|
||||||
* Fri Feb 05 2021 Benjamin Gilbert <bgilbert@redhat.com> - 2.9.0-4
|
* Fri Feb 05 2021 Benjamin Gilbert <bgilbert@redhat.com> - 2.9.0-4
|
||||||
- Drop Git commit hash from Release
|
- Drop Git commit hash from Release
|
||||||
@ -798,3 +891,6 @@ install -p -m 0755 ./ignition %{buildroot}/%{dracutlibdir}/modules.d/30ignition
|
|||||||
|
|
||||||
* Thu Jun 21 2018 Dusty Mabe <dusty@dustymabe.com> - 0.26.0-0.1.git7610725
|
* Thu Jun 21 2018 Dusty Mabe <dusty@dustymabe.com> - 0.26.0-0.1.git7610725
|
||||||
- First package for Fedora
|
- First package for Fedora
|
||||||
|
|
||||||
|
|
||||||
|
## END: Generated by rpmautospec
|
||||||
3
sources
Normal file
3
sources
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
SHA512 (gptfdisk-1.0.10.tar.gz) = 76764e176cd92470648a1d7a8d2570ebc41005204e73b0f2dd5a7aff2fc1981d3bec61a3bd68b855cc3474bcb7cf49c1cb2ea25843d4e7945bef7648d548383d
|
||||||
|
SHA512 (ignition-2.26.0.tar.gz) = 365072e3b9d11be9e0e6008d2e7fbff5a6583f393a9b1860d95ee4bccde1680306d0d063e844dd1ea59968ea4661105210d9c17cf6001a9c1d04a1861505406e
|
||||||
|
SHA512 (ignition-edge-b8d1b7a.tar.gz) = 4ad167d89a4efeca8a24f24fe5a0bd2e5a1acfa86eb21653d84ad136236c727c328e7da890f3294a2e81b32e7b52435713e71fdbdd9d93d815f1c202b4f49f36
|
||||||
Loading…
Reference in New Issue
Block a user