[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: services: guix: Don't use normalized codeset for Guix Data Servic
From: |
guix-commits |
Subject: |
01/02: services: guix: Don't use normalized codeset for Guix Data Service. |
Date: |
Thu, 8 Oct 2020 15:47:22 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 65c9f07a1616382c00d23b83d7a42b0e72dd8df8
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Oct 8 20:21:02 2020 +0100
services: guix: Don't use normalized codeset for Guix Data Service.
This matches up with changes in the Guix Data Service to not use the
normalized codeset.
* gnu/services/guix.scm (guix-data-service-shepherd-services): Change the
LC_ALL codeset to UTF-8.
---
gnu/services/guix.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm
index 2b1b695..a47c4bd 100644
--- a/gnu/services/guix.scm
+++ b/gnu/services/guix.scm
@@ -535,7 +535,7 @@ ca-certificates.crt file in the system profile."
#:environment-variables
`(,(string-append
"GUIX_LOCPATH=" #$glibc-utf8-locales "/lib/locale")
- "LC_ALL=en_US.utf8")
+ "LC_ALL=en_US.UTF-8")
#:log-file "/var/log/guix-data-service/web.log"))
(stop #~(make-kill-destructor)))
@@ -559,7 +559,7 @@ ca-certificates.crt file in the system profile."
"GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt"
,(string-append
"GUIX_LOCPATH=" #$glibc-utf8-locales "/lib/locale")
- "LC_ALL=en_US.utf8")
+ "LC_ALL=en_US.UTF-8")
#:log-file "/var/log/guix-data-service/process-jobs.log"))
(stop #~(make-kill-destructor))))))