From c7535543bbaef90131146802ec6a9e4f7897a4e8 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Thu, 4 Apr 2024 15:06:23 +0200 Subject: [PATCH 1/2] Update to 2.10.0.8 (#2271975) Signed-off-by: Vitaly Kuznetsov --- .gitignore | 1 + WALinuxAgent.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 155c25f..0eb4fb7 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /v2.8.0.11.tar.gz /v2.9.0.4.tar.gz /v2.9.1.1.tar.gz +/v2.10.0.8.tar.gz diff --git a/WALinuxAgent.spec b/WALinuxAgent.spec index 9109f65..453f973 100644 --- a/WALinuxAgent.spec +++ b/WALinuxAgent.spec @@ -2,8 +2,8 @@ %global dracut_modname 97walinuxagent Name: WALinuxAgent -Version: 2.9.1.1 -Release: 3%{?dist} +Version: 2.10.0.8 +Release: 1%{?dist} Summary: The Microsoft Azure Linux Agent License: Apache-2.0 @@ -121,6 +121,9 @@ install -m0755 -D -t %{buildroot}%{_prefix}/lib/dracut/modules.d/%{dracut_modnam %endif %changelog +* Thu Apr 04 2024 Vitaly Kuznetsov - 2.10.0.8-1 +- Update to 2.10.0.8 (#2271975) + * Mon Jan 22 2024 Fedora Release Engineering - 2.9.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild diff --git a/sources b/sources index 5cd38e5..dbfefa5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v2.9.1.1.tar.gz) = 3f44aecc16ac545db4b550586f168dbbdef34289aad6775973517bf645e5a1d486864c01e974f03a71b3e946c14e1ca140673a75c1cd602aac28725eaa68e83d +SHA512 (v2.10.0.8.tar.gz) = aa2f8d0eb2e69eb5f29bebaf78190ffbb723727da5018c5a7acc31cd2c926eb29d4ef6641024e9fd965d6eae2ed88472cfca7ec4cf0583c2f2d6a542adaea6bc From 07a51a7080b36bb05249ee744169746e30d3b6c1 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Wed, 8 May 2024 12:30:37 -0400 Subject: [PATCH 2/2] Add the udev dependencies to the dracut module This fixes the symlinks created by the Azure storage rules, which depend on readlink and cut being present. Before this change the Fedora Cloud image would produce a symlink at /dev/disk/azure -> /dev/sda instead of /dev/disk/azure being a directory of symlinks to the device and any partitions it contains. --- WALinuxAgent.spec | 5 ++++- module-setup.sh | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/WALinuxAgent.spec b/WALinuxAgent.spec index 453f973..486f128 100644 --- a/WALinuxAgent.spec +++ b/WALinuxAgent.spec @@ -3,7 +3,7 @@ Name: WALinuxAgent Version: 2.10.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Microsoft Azure Linux Agent License: Apache-2.0 @@ -121,6 +121,9 @@ install -m0755 -D -t %{buildroot}%{_prefix}/lib/dracut/modules.d/%{dracut_modnam %endif %changelog +* Wed May 08 2024 Jeremy Cline - 2.10.0.8-2 +- Add the udev dependencies to the dracut module + * Thu Apr 04 2024 Vitaly Kuznetsov - 2.10.0.8-1 - Update to 2.10.0.8 (#2271975) diff --git a/module-setup.sh b/module-setup.sh index 00d0eb7..9d29893 100644 --- a/module-setup.sh +++ b/module-setup.sh @@ -12,5 +12,6 @@ depends() { # called by dracut install() { + inst_multiple chmod cut readlink inst_rules 66-azure-storage.rules 99-azure-product-uuid.rules }