From a7ed1f67ee5dbbdbe45e15e6461b5f7c886747d8 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Sun, 27 May 2012 17:34:49 +0700 Subject: On systems with SystemD, install the service descriptor for nix-worker, and enable and start it --- nix.spec.in | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'nix.spec.in') diff --git a/nix.spec.in b/nix.spec.in index cbbd65e917eb..44ea8d7c9476 100644 --- a/nix.spec.in +++ b/nix.spec.in @@ -137,6 +137,14 @@ done # (until this is fixed in the relevant Makefile) chmod -x $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/nix.sh +# systemd not available on RHEL yet +%if ! 0%{?rhel} +# install systemd service descriptor +mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/systemd/system +cp -p misc/systemd/nix-worker.service \ + $RPM_BUILD_ROOT%{_prefix}/lib/systemd/system/ +%endif + # Copy the byte-compiled mode file by hand cp -p misc/emacs/nix-mode.elc $RPM_BUILD_ROOT%{_emacs_sitelispdir}/ @@ -165,6 +173,11 @@ done %post chgrp %{nixbld_group} /nix/store chmod 1775 /nix/store +%if ! 0%{?rhel} +# Enable and start Nix worker +systemctl enable nix-worker.service +systemctl start nix-worker.service +%endif %files %doc COPYING AUTHORS README @@ -174,6 +187,9 @@ chmod 1775 /nix/store %{perl_vendorarch}/* %exclude %dir %{perl_vendorarch}/auto/ %{_prefix}/libexec/* +%if ! 0%{?rhel} +%{_prefix}/lib/systemd/system/nix-worker.service +%endif %{_datadir}/emacs/site-lisp/nix-mode.el %{_datadir}/nix %{_mandir}/man1/nix-*.1* -- cgit 1.4.1