diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-24 09:23:11 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-24 09:23:11 +0100 |
commit | 332d7903f52c2bf3741b04ac2d01cd9018b70800 (patch) | |
tree | 86c36b8ebda45fb0f284b8aca1dd9b3f15cf340c /etc/guix-publish.conf.in | |
parent | b7230de54b493da5a78922b4226255763b525a98 (diff) | |
download | patches-332d7903f52c2bf3741b04ac2d01cd9018b70800.tar patches-332d7903f52c2bf3741b04ac2d01cd9018b70800.tar.gz |
Add system start-up files for "guix publish".
* .gitignore: add etc/guix-publish.conf and /etc/guix-publish.service.
* etc/guix-publish.conf.in: New file.
* etc/guix-publish.service.in: New file.
* nix/local.mk (etc/guix-%.service, etc/guix-%.conf): Generalized former
build-rules for by using patterns.
(nodist_systemdservice_DATA): Add etc/guix-publish.service, update
comment.
(nodist_upstartjob_DATA): Add etc/guix-publish.conf, update comment.
* doc/guix.texi (Invoking guix publish): Add description for enabling
"guix publish" on host distros using the new files.
Diffstat (limited to 'etc/guix-publish.conf.in')
-rw-r--r-- | etc/guix-publish.conf.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/etc/guix-publish.conf.in b/etc/guix-publish.conf.in new file mode 100644 index 0000000000..498fa295be --- /dev/null +++ b/etc/guix-publish.conf.in @@ -0,0 +1,12 @@ +# This is a "job" for the Upstart init system to launch 'guix-daemon'. +# Drop it in /etc/init to have 'guix-daemon' automatically started. + +description "Publish the GNU Guix store" + +start on runlevel [2345] + +stop on runlevel [016] + +task + +exec @bindir@/guix publish --user=nobody --port=8181 |