1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Add warning about init.d being replaced by systemd (#1533)

And move init.d last in the documentation.

Using init.d script in a systemd environment will work for jobs start/stop, but restart will not be managed as expected with old init.d system. This may cause confusion, pain and a lot of systemd search time.
This commit is contained in:
Jean-Philippe Doyle 2018-03-27 18:53:03 -04:00 committed by Nate Berkopec
parent a4c7648d75
commit 286cb05029
2 changed files with 8 additions and 4 deletions

View file

@ -1,9 +1,5 @@
# Puma as a service
## Init.d
See `/tools/jungle/init.d` for tools to use with init.d and start-stop-daemon.
## Upstart
See `/tools/jungle/upstart` for Ubuntu's upstart scripts.
@ -12,6 +8,12 @@ See `/tools/jungle/upstart` for Ubuntu's upstart scripts.
See [/docs/systemd](https://github.com/puma/puma/blob/master/docs/systemd.md).
## Init.d
Deprecatation Warning : `init.d` was replaced by `systemd` since Debian 8 and Ubuntu 16.04, you should look into [/docs/systemd](https://github.com/puma/puma/blob/master/docs/systemd.md) unless you are on an older OS.
See `/tools/jungle/init.d` for tools to use with init.d and start-stop-daemon.
## rc.d
See `/tools/jungle/rc.d` for FreeBSD's rc.d scripts

View file

@ -1,5 +1,7 @@
# Puma daemon service
Deprecatation Warning : `init.d` was replaced by `systemd` since Debian 8 and Ubuntu 16.04, you should look into [/docs/systemd](https://github.com/puma/puma/blob/master/docs/systemd.md) unless you are on an older OS.
Init script to manage multiple Puma servers on the same box using start-stop-daemon.
## Installation