Remove systemd deps on zookeeper and libvirt
This caused a serious race condition, since the IPs managed by PVC had not yet come up, but Zookeeper was trying to start and bind to them, which of course failed. Remove these dependencies entirely - the daemon itself starts these services during initialization and they do not need to be started by systemd first.
This commit is contained in:
parent
9fbe35fd24
commit
a44f134230
|
@ -2,8 +2,7 @@
|
|||
|
||||
[Unit]
|
||||
Description = Parallel Virtual Cluster node daemon
|
||||
After = network-online.target zookeeper.service libvirtd.service
|
||||
Wants = zookeeper.service libvirtd.service
|
||||
After = network-online.target
|
||||
PartOf = pvc.target
|
||||
|
||||
[Service]
|
||||
|
|
Loading…
Reference in New Issue