mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
nixos/libvirtd: always start libvirtd
Previously we did socket-activation but this breaks the autostart feature since upstream expects libvirtd to be started unconditionally on boot. Fixes #171623.
This commit is contained in:
parent
2a63e4f902
commit
d82f52519a
2 changed files with 7 additions and 3 deletions
|
@ -336,6 +336,7 @@ in
|
|||
};
|
||||
|
||||
systemd.services.libvirtd = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
requires = [ "libvirtd-config.service" ];
|
||||
after = [ "libvirtd-config.service" ]
|
||||
++ optional vswitch.enable "ovs-vswitchd.service";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue