diff options
author | Jack Hill <jackhill@jackhill.us> | 2019-06-03 14:42:16 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-06-05 17:27:22 +0200 |
commit | a5ca4a63426f5e24c13b93bde95511e9d89757f5 (patch) | |
tree | 46892e416be36604e43ad91b1af1a2b9322ec277 | |
parent | 4ab9ad1ed2c6be98f5dba2b88db041f4f85950fe (diff) | |
download | patches-a5ca4a63426f5e24c13b93bde95511e9d89757f5.tar patches-a5ca4a63426f5e24c13b93bde95511e9d89757f5.tar.gz |
etc: Fix GUIX_LOCPATH quoting in 'guix-publish.service' file.
This is a followup to 579d17b70dac067f8194ede46513400b91ac136a.
* etc/guix-publish.service.in (Environment): Move GUIX_LOCPATH inside
the quotes.
-rw-r--r-- | etc/guix-publish.service.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/guix-publish.service.in b/etc/guix-publish.service.in index e61a0314ce..2dc89ef600 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' LC_ALL=en_US.utf8 +Environment='GUIX_LOCPATH=@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale' LC_ALL=en_US.utf8 RemainAfterExit=yes StandardOutput=syslog StandardError=syslog |