diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-02T11·14+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-02T11·14+0200 |
commit | 20668b136329da92be7c63e7f7c4918968ff0015 (patch) | |
tree | 73be9e65b2fc0d916318372b2582a44f891d8991 | |
parent | de4cdd0d47adc70a4db12397a42c18ee50b4e662 (diff) |
Install an Upstart service
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | misc/upstart/local.mk | 1 | ||||
-rw-r--r-- | misc/upstart/nix-daemon.conf.in | 5 |
4 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 592a8c2392fa..0a3c979208bf 100644 --- a/.gitignore +++ b/.gitignore @@ -109,6 +109,7 @@ Makefile.config /misc/systemd/nix-daemon.service /misc/systemd/nix-daemon.socket +/misc/upstart/nix-daemon.conf *.a *.o diff --git a/Makefile b/Makefile index 77f22db9f218..d6c645f0f336 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ makefiles = \ scripts/local.mk \ corepkgs/local.mk \ misc/systemd/local.mk \ + misc/upstart/local.mk \ misc/emacs/local.mk \ doc/manual/local.mk \ tests/local.mk diff --git a/misc/upstart/local.mk b/misc/upstart/local.mk new file mode 100644 index 000000000000..249262d4f787 --- /dev/null +++ b/misc/upstart/local.mk @@ -0,0 +1 @@ +$(foreach n, nix-daemon.conf, $(eval $(call install-file-in, $(d)/$(n), $(sysconfdir)/init, 0644))) diff --git a/misc/upstart/nix-daemon.conf.in b/misc/upstart/nix-daemon.conf.in new file mode 100644 index 000000000000..0e806edbd770 --- /dev/null +++ b/misc/upstart/nix-daemon.conf.in @@ -0,0 +1,5 @@ +description "Nix Daemon" +start on filesystem +stop on shutdown +respawn +exec @bindir@/nix-daemon --daemon |