Marcus Meissner
d2b059e75b
- 0026-systemd-no-default-dep No default dependencies for rpcbind. This allows it to start early when it might be needed. (bnc#860246) OBS-URL: https://build.opensuse.org/request/show/227649 OBS-URL: https://build.opensuse.org/package/show/network/rpcbind?expand=0&rev=40
31 lines
710 B
Plaintext
31 lines
710 B
Plaintext
rpcbind needs to start before everything is setup, so DefaultDependencies
|
|
just get in the way
|
|
|
|
|
|
References: bnc#860246
|
|
Signed-off-by: NeilBrown <neilb@suse.de>
|
|
|
|
---
|
|
systemd/rpcbind.service.in | 1 +
|
|
systemd/rpcbind.socket | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
--- rpcbind-0.2.1_rc4.orig/systemd/rpcbind.service.in
|
|
+++ rpcbind-0.2.1_rc4/systemd/rpcbind.service.in
|
|
@@ -1,5 +1,6 @@
|
|
[Unit]
|
|
Description=RPC Bind
|
|
+DefaultDependencies=no
|
|
|
|
[Service]
|
|
Type=notify
|
|
--- rpcbind-0.2.1_rc4.orig/systemd/rpcbind.socket
|
|
+++ rpcbind-0.2.1_rc4/systemd/rpcbind.socket
|
|
@@ -1,5 +1,6 @@
|
|
[Unit]
|
|
Description=RPCbind Server Activation Socket
|
|
+DefaultDependencies=no
|
|
Wants=rpcbind.target
|
|
Before=rpcbind.target
|
|
|