Fabian Deutsch has uploaded a new change for review. Change subject: init: Don't drop BOOTIF ......................................................................
init: Don't drop BOOTIF Previously the BOOTIF param was dropped from our config file during ovirt-early. Now the BOOTIF param is kept, to provide informations about the to be confgured interface to the UI. Change-Id: If06ee5f79489f9e7098858ce995db5c19c71d99d Signed-off-by: Fabian Deutsch <[email protected]> --- M scripts/ovirt-init-functions.sh.in 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/70/15670/1 diff --git a/scripts/ovirt-init-functions.sh.in b/scripts/ovirt-init-functions.sh.in index a16bdfd..c20d58e 100644 --- a/scripts/ovirt-init-functions.sh.in +++ b/scripts/ovirt-init-functions.sh.in @@ -761,7 +761,7 @@ for p in $params $plugin_vars; do PARAM=$(uc $p) value=$(ptr $p) - if [ -n "$value" -o $p = 'init' -o $p = 'bootif' -o $p = 'upgrade' -o $p = 'install' ]; then + if [ -n "$value" -o $p = 'init' -o $p = 'upgrade' -o $p = 'install' ]; then log "Updating OVIRT_$PARAM to '$value'" echo "set /files$OVIRT_DEFAULTS/OVIRT_$PARAM '\"$value\"'" \ >> $tmpaug -- To view, visit http://gerrit.ovirt.org/15670 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: If06ee5f79489f9e7098858ce995db5c19c71d99d 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
