Fabian Deutsch has uploaded a new change for review. Change subject: init: Restart networking early during boot ......................................................................
init: Restart networking early during boot Previously we were restarting networking quite late during the boot. The reason to do this was that the restarting would also recognize the bind mounted ifcfg files - which weren't available during the first start of networking. The key point here is that the network got restartde very late during the boot process and could interfere with other services coming up. Now we still do the restart, but much earlier, which should lead to fewer collisions with other services. Change-Id: I040f69d6df0a24a31f8057121029d04c172646da Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=805313 Signed-off-by: Fabian Deutsch <[email protected]> --- M scripts/ovirt-init-functions.sh.in 1 file changed, 6 insertions(+), 8 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/81/43781/1 diff --git a/scripts/ovirt-init-functions.sh.in b/scripts/ovirt-init-functions.sh.in index 719a776..1ae22c7 100644 --- a/scripts/ovirt-init-functions.sh.in +++ b/scripts/ovirt-init-functions.sh.in @@ -911,16 +911,17 @@ # EL7 systemctl daemon-reload systemctl --no-block isolate default.target - mount -a - swapon -a - service auditd restart else # EL6 initctl reload-configuration - mount -a - swapon -a fi + # A few services need to be restarted to pickup the newly bind-mounted + # config files (mounted in by the preceeding mount_config call) + mount -a + swapon -a + service network restart + service auditd restart fi log "Updating $OVIRT_DEFAULTS" tmpaug=$(mktemp) @@ -1487,9 +1488,6 @@ # Hack to fix rhbz#844997 mount --make-rshared / - - # Small hack to fix https://bugzilla.redhat.com/show_bug.cgi?id=805313 - service network restart 2>/dev/null # Restarting netconsole, now that the network is up, rhbz#869984 [[ -f "/config/etc/sysconfig/netconsole" && -- To view, visit https://gerrit.ovirt.org/43781 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I040f69d6df0a24a31f8057121029d04c172646da Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: Fabian Deutsch <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
