Douglas Schilling Landgraf has uploaded a new change for review. Change subject: ovirt-auto-install: fix imports ......................................................................
ovirt-auto-install: fix imports In commit b23c6f48 we improved the code not importing everything from the modules but we missed to declare some needed imports. Change-Id: Ifbe43cc316540752ed9710fb2eca96f4c2cf8670 Signed-off-by: Douglas Schilling Landgraf <[email protected]> --- M scripts/ovirt-auto-install.py 1 file changed, 3 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/75/43175/1 diff --git a/scripts/ovirt-auto-install.py b/scripts/ovirt-auto-install.py index 44b2aaf..ac01ca2 100755 --- a/scripts/ovirt-auto-install.py +++ b/scripts/ovirt-auto-install.py @@ -29,6 +29,9 @@ import os import time +from ovirtnode.install import Install +from ovirtnode.ovirtfunctions import is_iscsi_install, is_stateless + OVIRT_VARS = defaults.NodeConfigFile().get_dict() -- To view, visit https://gerrit.ovirt.org/43175 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ifbe43cc316540752ed9710fb2eca96f4c2cf8670 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: Douglas Schilling Landgraf <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
