mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
Merge #21418: contrib: Make systemd invoke dependencies only when ready
663f6cd9ddadeec30b27ec12f0f5ed49f3146cc9 contrib: Use -daemonwait in systemd init script (Wladimir J. van der Laan) Pull request description: Make systemd invoke dependencies only when ready by using `-daemonwait` in the service file instead of `-daemon`. Closes #21322 by making bitcoind conform to behavior specified for `type=forking`. This may need some tuning of timeouts. ACKs for top commit: darosior: ACK 663f6cd hebasto: re-ACK 663f6cd9ddadeec30b27ec12f0f5ed49f3146cc9 Tree-SHA512: 890005852b632a202caa578e6c796ebdc9da0b2379a9157a4f56f7db9d193c0ffbb78d120bbf112ab2f273855f2a08c3da000b1f7a9fb5222a3b94dcdb16b878
This commit is contained in:
parent
99f09a0be6
commit
3325620ce1
@ -18,7 +18,7 @@ After=network-online.target
|
||||
Wants=network-online.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/dashd -daemon \
|
||||
ExecStart=/usr/bin/dashd -daemonwait \
|
||||
-pid=/run/dashd/dashd.pid \
|
||||
-conf=/etc/dash/dash.conf \
|
||||
-datadir=/var/lib/dashd
|
||||
@ -33,6 +33,7 @@ ExecStartPre=/bin/chgrp dashcore /etc/dash
|
||||
Type=forking
|
||||
PIDFile=/run/dashd/dashd.pid
|
||||
Restart=on-failure
|
||||
TimeoutStartSec=infinity
|
||||
TimeoutStopSec=600
|
||||
|
||||
# Directory creation and permissions
|
||||
|
Loading…
Reference in New Issue
Block a user