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.
This commit is contained in:
Christopher Baines 2020-10-08 20:21:02 +01:00
parent efbf5fdd01
commit 65c9f07a16
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -535,7 +535,7 @@ (define (guix-data-service-shepherd-services config)
#: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 @@ (define (guix-data-service-shepherd-services config)
"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))))))