Merge pull request #260050 from 6t8k/nixos-test-openssh-wait-for-sshd

authored by Artturi and committed by GitHub c1cfba58 9dfb962c

+6 -1
+6 -1
nixos/tests/openssh.nix
··· 103 103 testScript = '' 104 104 start_all() 105 105 106 - server.wait_for_unit("sshd") 106 + server.wait_for_unit("sshd", timeout=30) 107 + server_localhost_only.wait_for_unit("sshd", timeout=30) 108 + server_match_rule.wait_for_unit("sshd", timeout=30) 109 + 110 + server_lazy.wait_for_unit("sshd.socket", timeout=30) 111 + server_localhost_only_lazy.wait_for_unit("sshd.socket", timeout=30) 107 112 108 113 with subtest("manual-authkey"): 109 114 client.succeed("mkdir -m 700 /root/.ssh")