Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Jeremy Cline
74c8dfa9d4 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.

[Vitaly Kuznetsov] Update the change for F39 branch.
2024-05-09 14:23:50 +02:00
2 changed files with 5 additions and 1 deletions

View file

@ -3,7 +3,7 @@
Name: WALinuxAgent
Version: 2.9.1.1
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 <jeremycline@microsoft.com> - 2.9.1.1-2
- Add the udev dependencies to the dracut module
* Wed Oct 18 2023 Vitaly Kuznetsov <vkuznets@redhat.com> - 2.9.1.1-1
- Update to 2.9.1.1 (#2232763)

View file

@ -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
}