diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-05-13 23:42:09 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-05-13 23:46:08 +0200 |
commit | 489d6c0dc03f1d95a3fefa6301f36cac9b50b2c3 (patch) | |
tree | 20639a3ddeeec09c05f249af74ca1c4043a09a6c /etc | |
parent | 76269f6bc4200ef79aa80a8a6160ae269c2a36c9 (diff) | |
download | patches-489d6c0dc03f1d95a3fefa6301f36cac9b50b2c3.tar patches-489d6c0dc03f1d95a3fefa6301f36cac9b50b2c3.tar.gz |
Set 'LC_ALL=en_US.utf8' in systemd '.service' files.
Fixes <https://bugs.gnu.org/35671>.
* etc/guix-daemon.service.in (Environment): Quote the 'GUIX_LOCPATH'
value; add 'LC_ALL'.
* etc/guix-publish.service.in (Environment): Likewise.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/guix-daemon.service.in | 2 | ||||
-rw-r--r-- | etc/guix-publish.service.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/guix-daemon.service.in b/etc/guix-daemon.service.in index 99ec7c48f8..7b20a91931 100644 --- a/etc/guix-daemon.service.in +++ b/etc/guix-daemon.service.in @@ -7,7 +7,7 @@ Description=Build daemon for GNU Guix [Service] ExecStart=@localstatedir@/guix/profiles/per-user/root/current-guix/bin/guix-daemon --build-users-group=guixbuild -Environment=GUIX_LOCPATH=@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale +Environment=GUIX_LOCPATH='@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale' LC_ALL=en_US.utf8 RemainAfterExit=yes StandardOutput=syslog StandardError=syslog diff --git a/etc/guix-publish.service.in b/etc/guix-publish.service.in index 0526f97994..e61a0314ce 100644 --- a/etc/guix-publish.service.in +++ b/etc/guix-publish.service.in @@ -7,7 +7,7 @@ Description=Publish the GNU Guix store [Service] ExecStart=@localstatedir@/guix/profiles/per-user/root/current-guix/bin/guix publish --user=nobody --port=8181 -Environment=GUIX_LOCPATH=@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale +Environment=GUIX_LOCPATH='@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale' LC_ALL=en_US.utf8 RemainAfterExit=yes StandardOutput=syslog StandardError=syslog |