Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove systemd-bootstrap dependency in libvirt #8699

Merged
merged 3 commits into from
Apr 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions SPECS/libvirt/libvirt.spec
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
Summary: Library providing a simple virtualization API
Name: libvirt
Version: 10.0.0
Release: 1%{?dist}
Release: 2%{?dist}
License: GPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND OFL-1.1
Vendor: Microsoft Corporation
Distribution: Azure Linux
Expand Down Expand Up @@ -398,8 +398,9 @@ Requires: polkit >= 0.112
Requires: dmidecode
%endif
BettyRain marked this conversation as resolved.
Show resolved Hide resolved
# For service management
Requires(posttrans): /usr/bin/systemctl
Requires(preun): /usr/bin/systemctl
# azl has systemd-bootstrap which also provides /usr/bin/sysctl, explicitly request full systemd.
Requires(posttrans): systemd
Requires(preun): systemd
# libvirtd depends on 'messagebus' service
Requires: dbus
# For uid creation during pre
Expand Down Expand Up @@ -2184,6 +2185,9 @@ exit 0
%endif

%changelog
* Wed Apr 03 2024 Betty Lakes <[email protected]> - 10.0.0-2
- Make systemd dependency explicit to avoid confusion with systemd-bootstrap.

* Thu Jan 18 2024 Brian Fjeldstad <[email protected]> - 10.0.0-1
- Updating to version 10.0.0.
- Hard code configuration options to match Mariner 2.0 configurations. Ensure that
Expand Down
Loading