build: Don't embed absolute paths in .service and .conf service files.
authorLeo Famulari <leo@famulari.name>
Sun, 5 Mar 2017 19:33:13 +0000 (14:33 -0500)
committerLeo Famulari <leo@famulari.name>
Mon, 6 Mar 2017 18:25:51 +0000 (13:25 -0500)
Otherwise, users will be stuck running an old copy of guix and the guix-daemon
if they copy the service files instead of symlinking them.

* etc/guix-daemon.conf.in, etc/guix-daemon.service.in, etc/guix-publish.conf.in,
etc/guix-publish.service.in: Expand @localstatedir@ instead of @bindir@.
* nix/local.mk (etc/guix-%.service, etc/guix-%.conf): Use @localstatedir@
instead of @bindir@.

etc/guix-daemon.conf.in
etc/guix-daemon.service.in
etc/guix-publish.conf.in
etc/guix-publish.service.in
nix/local.mk

index 8f833cb..09c70cd 100644 (file)
@@ -9,4 +9,4 @@ stop on runlevel [016]
 
 task
 
-exec @bindir@/guix-daemon --build-users-group=guixbuild
+exec @localstatedir@/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild
index ab0ce09..ffe4cf9 100644 (file)
@@ -6,7 +6,7 @@
 Description=Build daemon for GNU Guix
 
 [Service]
-ExecStart=@bindir@/guix-daemon --build-users-group=guixbuild
+ExecStart=@localstatedir@/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild
 Environment=GUIX_LOCPATH=/root/.guix-profile/lib/locale
 RemainAfterExit=yes
 StandardOutput=syslog
index 498fa29..241c594 100644 (file)
@@ -9,4 +9,4 @@ stop on runlevel [016]
 
 task
 
-exec @bindir@/guix publish --user=nobody --port=8181
+exec @localstatedir@/guix/profiles/per-user/root/guix-profile/bin/guix publish --user=nobody --port=8181
index fc4e3c2..8aaf09e 100644 (file)
@@ -6,7 +6,7 @@
 Description=Publish the GNU Guix store
 
 [Service]
-ExecStart=@bindir@/guix publish --user=nobody --port=8181
+ExecStart=@localstatedir@/guix/profiles/per-user/root/guix-profile/bin/guix publish --user=nobody --port=8181
 Environment=GUIX_LOCPATH=/root/.guix-profile/lib/locale
 RemainAfterExit=yes
 StandardOutput=syslog
index eb70d26..9e0c457 100644 (file)
@@ -190,7 +190,7 @@ nodist_systemdservice_DATA = etc/guix-daemon.service etc/guix-publish.service
 etc/guix-%.service: etc/guix-%.service.in      \
                         $(top_builddir)/config.status
        $(AM_V_GEN)$(MKDIR_P) "`dirname $@`";   \
-       $(SED) -e 's|@''bindir''@|$(bindir)|' < \
+       $(SED) -e 's|@''localstatedir''@|$(localstatedir)|' <   \
               "$<" > "$@.tmp";         \
        mv "$@.tmp" "$@"
 
@@ -201,7 +201,7 @@ nodist_upstartjob_DATA = etc/guix-daemon.conf etc/guix-publish.conf
 etc/guix-%.conf: etc/guix-%.conf.in    \
                         $(top_builddir)/config.status
        $(AM_V_GEN)$(MKDIR_P) "`dirname $@`";   \
-       $(SED) -e 's|@''bindir''@|$(bindir)|' < \
+       $(SED) -e 's|@''localstatedir''@|$(localstatedir)|' <   \
               "$<" > "$@.tmp";         \
        mv "$@.tmp" "$@"