lol

nixos/tests: correct comment in radicale.nix (#32574)

The secrets are in fact also stored unhashed, as part of the .drv file
which produces the htpasswd.

authored by

Linus Heckemann and committed by
Joachim F
e4b32222 4792523a

+1 -1
+1 -1
nixos/tests/radicale.nix
··· 20 20 ''; 21 21 }; 22 22 # WARNING: DON'T DO THIS IN PRODUCTION! 23 - # This puts secrets (albeit hashed) directly into the Nix store for ease of testing. 23 + # This puts unhashed secrets directly into the Nix store for ease of testing. 24 24 environment.etc."radicale/htpasswd".source = pkgs.runCommand "htpasswd" {} '' 25 25 ${pkgs.apacheHttpd}/bin/htpasswd -bcB "$out" ${user} ${password} 26 26 '';