nixos/tests/taskserver: fix typos (#43284)

authored by

Oliver Evans and committed by
xeji
01bc14da 8e986302

+2 -2
+2 -2
nixos/tests/taskserver.nix
··· 18 18 crlTemplate = pkgs.writeText "snakeoil-crl.template" '' 19 19 expiration_days = -1 20 20 ''; 21 - userCertTemplace = pkgs.writeText "snakoil-user-cert.template" '' 21 + userCertTemplate = pkgs.writeText "snakeoil-user-cert.template" '' 22 22 organization = snakeoil 23 23 cn = server 24 24 expiration_days = -1 ··· 49 49 certtool -p --bits 4096 | sed -n \ 50 50 -e '/^----* *BEGIN/,/^----* *END/p' > "$out/alice.key" 51 51 52 - certtool -c --template "$userCertTemplace" \ 52 + certtool -c --template "$userCertTemplate" \ 53 53 --load-privkey "$out/alice.key" \ 54 54 --load-ca-privkey ca.key \ 55 55 --load-ca-certificate "$cacert" \