summary refs log tree commit diff
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2017-12-11 22:09:23 +0000
committerJoachim F <joachifm@users.noreply.github.com>2017-12-11 22:09:23 +0000
commite4b32222a3ef6ac0c0c4895e468b2e1c4e7d9708 (patch)
tree795ddd25b4aa7715132ce87494ed90d35a9947ee
parent4792523a3dae92e5a479726d6a61c9ea4c38c8d5 (diff)
downloadnixpkgs-e4b32222a3ef6ac0c0c4895e468b2e1c4e7d9708.tar
nixpkgs-e4b32222a3ef6ac0c0c4895e468b2e1c4e7d9708.tar.gz
nixpkgs-e4b32222a3ef6ac0c0c4895e468b2e1c4e7d9708.tar.bz2
nixpkgs-e4b32222a3ef6ac0c0c4895e468b2e1c4e7d9708.tar.lz
nixpkgs-e4b32222a3ef6ac0c0c4895e468b2e1c4e7d9708.tar.xz
nixpkgs-e4b32222a3ef6ac0c0c4895e468b2e1c4e7d9708.tar.zst
nixpkgs-e4b32222a3ef6ac0c0c4895e468b2e1c4e7d9708.zip
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.
-rw-r--r--nixos/tests/radicale.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/radicale.nix b/nixos/tests/radicale.nix
index f694fc75ef7..8ac0639c6a8 100644
--- a/nixos/tests/radicale.nix
+++ b/nixos/tests/radicale.nix
@@ -20,7 +20,7 @@ let
       '';
     };
     # WARNING: DON'T DO THIS IN PRODUCTION!
-    # This puts secrets (albeit hashed) directly into the Nix store for ease of testing.
+    # This puts unhashed secrets directly into the Nix store for ease of testing.
     environment.etc."radicale/htpasswd".source = pkgs.runCommand "htpasswd" {} ''
       ${pkgs.apacheHttpd}/bin/htpasswd -bcB "$out" ${user} ${password}
     '';