summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2017-04-07 10:53:35 -0400
committerSteve Dickson <steved@redhat.com>2017-04-09 15:00:05 -0400
commit53f31f060e94fb0318418485fc2ab7149ab27f18 (patch)
tree3fa57cb6a2344c2732760c3425819e37138c4663
parentfbd7623dd8d5e418e7cb369d4026d5368f7c46a6 (diff)
downloadnfs-utils-53f31f060e94fb0318418485fc2ab7149ab27f18.tar.gz
nfs-utils-53f31f060e94fb0318418485fc2ab7149ab27f18.tar.xz
nfs-utils-53f31f060e94fb0318418485fc2ab7149ab27f18.zip
systemd: nfs-server service should use network-online
There has been an number startup problem where parts of the NFS server fail to start due to DNS and other parts of the network not be up. Reading the systemd.special it seems network.target is a passive unit which does not wait and network-online.target is an active unit which does not wait so that should be used. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1419351 Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--systemd/nfs-server.service4
1 files changed, 2 insertions, 2 deletions
diff --git a/systemd/nfs-server.service b/systemd/nfs-server.service
index 5be5de6..7cf4ae0 100644
--- a/systemd/nfs-server.service
+++ b/systemd/nfs-server.service
@@ -7,8 +7,8 @@ Wants=rpcbind.socket
Wants=rpc-statd.service nfs-idmapd.service
Wants=rpc-statd-notify.service
-After= local-fs.target
-After= network.target proc-fs-nfsd.mount rpcbind.socket nfs-mountd.service
+After= local-fs.target network-online.target
+After= proc-fs-nfsd.mount rpcbind.socket nfs-mountd.service
After= nfs-idmapd.service rpc-statd.service
Before= rpc-statd-notify.service