Commit 9157b72c authored by Niklas Hambüchen's avatar Niklas Hambüchen Committed by github-actions[bot]
Browse files

turbovnc.tests: Don't override already-empty password to empty

(cherry picked from commit cd519b61)
parent 06f31991
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -26,9 +26,8 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
    # So that we can ssh into the VM, see e.g.
    # http://blog.patapon.info/nixos-local-vm/#accessing-the-vm-with-ssh
    services.openssh.enable = true;
    users.extraUsers.root.password = "";
    users.extraUsers.root.hashedPasswordFile = null; # avoids ambiguity warning during eval (`test-instrumentation.nix` sets it)
    users.mutableUsers = false;
    # `test-instrumentation.nix` already sets an empty root password.
    # The following have to all be set to allow an empty SSH login password.
    services.openssh.settings.PermitRootLogin = "yes";
    services.openssh.settings.PermitEmptyPasswords = "yes";