Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b1d87641a158
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6a00eba02a38
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 8, 2020

  1. libvirtd: don't start libvirtd-tcp.socket by default

    Per upstream:
    
    > libvirtd-tcp.socket - the unit file corresponding to the TCP 16509
    > port for non-TLS remote access. This socket should not be configured
    > to start on boot until the administrator has configured a suitable
    > authentication mechanism.
    
    (cherry picked from commit 84ecbc9)
    grahamc committed Jul 8, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    6a00eba View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 nixos/modules/virtualisation/libvirtd.nix
4 changes: 2 additions & 2 deletions nixos/modules/virtualisation/libvirtd.nix
Original file line number Diff line number Diff line change
@@ -267,7 +267,7 @@ in {
restartIfChanged = false;
};

systemd.sockets.libvirtd .wantedBy = [ "sockets.target" ];
systemd.sockets.libvirtd-tcp.wantedBy = [ "sockets.target" ];
# https://libvirt.org/daemons.html#monolithic-systemd-integration
systemd.sockets.libvirtd.wantedBy = [ "sockets.target" ];
};
}