Anatoly Litovsky has uploaded a new change for review. Change subject: Makes the vdsmd load after iscsi ......................................................................
Makes the vdsmd load after iscsi Require is too strong here since iscsi has conditions for starting It requires for session files to be existing and will refuse to start if there is none. In order to run vdsm in case there is no iscsi connection the appropriate way is using the after keyword or wanted. Bug-Url: https://bugzilla.redhat.com/1237061 Change-Id: Iad87c430ed4257cb2b7def445ea0020403951392 Signed-off-by: Tolik Litovsky <[email protected]> --- M init/systemd/vdsmd.service.in 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/86/46486/1 diff --git a/init/systemd/vdsmd.service.in b/init/systemd/vdsmd.service.in index 0f48cdf..7c2e224 100644 --- a/init/systemd/vdsmd.service.in +++ b/init/systemd/vdsmd.service.in @@ -1,9 +1,9 @@ [Unit] Description=Virtual Desktop Server Manager Requires=multipathd.service libvirtd.service time-sync.target \ - iscsid.service rpcbind.service supervdsmd.service sanlock.service \ + rpcbind.service supervdsmd.service sanlock.service \ vdsm-network.service -After=vdsm-network.service +After=vdsm-network.service iscsid.service Conflicts=libvirt-guests.service ksmtuned.service [Service] -- To view, visit https://gerrit.ovirt.org/46486 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Iad87c430ed4257cb2b7def445ea0020403951392 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: ovirt-3.5.4 Gerrit-Owner: Anatoly Litovsky <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
