diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2023-04-07 13:41:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 13:41:32 +0200 |
commit | 81dfc2b01231c65137017de092c8506838fadd94 (patch) | |
tree | 8eb60530be71b451d588d493dde52efe86ea30ff /doc/manual | |
parent | 91856396317995aa38dc7244357596b8de27f937 (diff) | |
parent | 9207f945822764a041a485009759f0a895468e94 (diff) |
Merge pull request #7515 from MatthewCroughan/mc/check-trusted-user
Add Store::isTrustedClient()
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/src/release-notes/rl-next.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/manual/src/release-notes/rl-next.md b/doc/manual/src/release-notes/rl-next.md index ae159de8f..af1850bdc 100644 --- a/doc/manual/src/release-notes/rl-next.md +++ b/doc/manual/src/release-notes/rl-next.md @@ -39,3 +39,9 @@ * `man nix-store-<operation>` and `man nix-env-<operation>` * `nix-store --help --<operation>` and `nix-env --help --<operation>`. + +* Nix when used as a client now checks whether the store (the server) trusts the client. + (The store always had to check whether it trusts the client, but now the client is informed of the store's decision.) + This is useful for scripting interactions with (non-legacy-ssh) remote Nix stores. + + `nix store ping` and `nix doctor` now display this information. |