Ofer Schreiber has uploaded a new change for review. Change subject: packaging: Disable provisioning when using remote DB ......................................................................
packaging: Disable provisioning when using remote DB When engine-setup generates an answer-file and the user asks to use a remote DB, the setup should disable provisioning in the answer file, so running setup again with the created answer-file, it won't ask the user database related questions. Change-Id: I0dace423dbdb24a23ab189b039e39f93b3be6853 Bug-Url: https://bugzilla.redhat.com/1059358 Signed-off-by: Ofer Schreiber <[email protected]> --- M packaging/setup/plugins/ovirt-engine-setup/provisioning/postgres.py 1 file changed, 4 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/00/23900/1 diff --git a/packaging/setup/plugins/ovirt-engine-setup/provisioning/postgres.py b/packaging/setup/plugins/ovirt-engine-setup/provisioning/postgres.py index 5a703d2..f85f065 100644 --- a/packaging/setup/plugins/ovirt-engine-setup/provisioning/postgres.py +++ b/packaging/setup/plugins/ovirt-engine-setup/provisioning/postgres.py @@ -455,6 +455,10 @@ false=_('Manual'), default=True, ) + else: + self.environment[ + osetupcons.ProvisioningEnv.POSTGRES_PROVISIONING_ENABLED + ] = False self._enabled = self.environment[ osetupcons.ProvisioningEnv.POSTGRES_PROVISIONING_ENABLED -- To view, visit http://gerrit.ovirt.org/23900 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I0dace423dbdb24a23ab189b039e39f93b3be6853 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.3 Gerrit-Owner: Ofer Schreiber <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
