diff options
| author | Dariqq <dariqq@posteo.net> | 2026-06-14 16:45:09 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-07-13 17:57:13 +0200 |
| commit | 88de3bc4b9ead79b080d0f3f96757efef028b0fb (patch) | |
| tree | 867ffc81e866a1d11c26d9079c15c148219aec8d /gnu | |
| parent | 1cc9d578695fa9914a5d915235423417fc0fb4b8 (diff) | |
system: nss: Add protocols database.
* gnu/system/nss.scm (<name-service-switch>): Add protocols field.
(name-service-switch->string): Add protocols to serialization.
* doc/guix.texi (Name Service Switch): Add protocols to list of available databases.
Change-Id: Icf77556359680670e12b7add434fac401662266d
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Merges: #9293
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/system/nss.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/system/nss.scm b/gnu/system/nss.scm index a82fef24882..930f556e5e5 100644 --- a/gnu/system/nss.scm +++ b/gnu/system/nss.scm | |||
| @@ -140,6 +140,8 @@ | |||
| 140 | (default (list %files %dns))) | 140 | (default (list %files %dns))) |
| 141 | (password name-service-switch-password | 141 | (password name-service-switch-password |
| 142 | (default (list %files))) | 142 | (default (list %files))) |
| 143 | (protocols name-service-switch-protocols | ||
| 144 | (default '())) | ||
| 143 | (public-key name-service-switch-public-key | 145 | (public-key name-service-switch-public-key |
| 144 | (default '())) | 146 | (default '())) |
| 145 | (rpc name-service-switch-rpc | 147 | (rpc name-service-switch-rpc |
| @@ -234,6 +236,7 @@ Configuration File\" in the libc manual." | |||
| 234 | (->string "netgroup" name-service-switch-netgroup) | 236 | (->string "netgroup" name-service-switch-netgroup) |
| 235 | (->string "networks" name-service-switch-networks) | 237 | (->string "networks" name-service-switch-networks) |
| 236 | (->string "passwd" name-service-switch-password) | 238 | (->string "passwd" name-service-switch-password) |
| 239 | (->string "protocols" name-service-switch-protocols) | ||
| 237 | (->string "publickey" name-service-switch-public-key) | 240 | (->string "publickey" name-service-switch-public-key) |
| 238 | (->string "rpc" name-service-switch-rpc) | 241 | (->string "rpc" name-service-switch-rpc) |
| 239 | (->string "services" name-service-switch-services) | 242 | (->string "services" name-service-switch-services) |
