diff options
| author | Felix Lechner <felix.lechner@lease-up.com> | 2023-05-12 11:52:50 -0700 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2023-08-15 23:30:44 +0200 |
| commit | 48d06aee7b39c8e72644d665bd1995cb1ae1b094 (patch) | |
| tree | 0e7a7787883cba1c1ee192cfc26814d73ad00f96 /gnu/services/authentication.scm | |
| parent | 20c51c1d2ce8fd4b32203343c3afbfe2622a22d7 (diff) | |
services: Use more 'file-append'.
* gnu/services/authentication.scm (pam-ldap-pam-service): Use
'file-append' instead of #~(string-append ...).
* gnu/services/base.scm (greetd-pam-service): Likewise.
* gnu/services/kerberos.scm (pam-krb5-pam-service): Likewise.
* gnu/services/pam-mount.scm (pam-mount-pam-service): Likewise.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/services/authentication.scm')
| -rw-r--r-- | gnu/services/authentication.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/authentication.scm b/gnu/services/authentication.scm index f1ad1b1afe3..fbfef2d3d0a 100644 --- a/gnu/services/authentication.scm +++ b/gnu/services/authentication.scm | |||
| @@ -504,7 +504,7 @@ password.") | |||
| 504 | (define (pam-ldap-pam-service config) | 504 | (define (pam-ldap-pam-service config) |
| 505 | "Return a PAM service for LDAP authentication." | 505 | "Return a PAM service for LDAP authentication." |
| 506 | (define pam-ldap-module | 506 | (define pam-ldap-module |
| 507 | #~(string-append #$(nslcd-configuration-nss-pam-ldapd config) | 507 | (file-append (nslcd-configuration-nss-pam-ldapd config) |
| 508 | "/lib/security/pam_ldap.so")) | 508 | "/lib/security/pam_ldap.so")) |
| 509 | (pam-extension | 509 | (pam-extension |
| 510 | (transformer | 510 | (transformer |
