Sandro Bonazzola has uploaded a new change for review. Change subject: packaging: setup: remove release preview warning ......................................................................
packaging: setup: remove release preview warning Change-Id: I15a161f148613d754df2760b13c0ba8bc488db2e Signed-off-by: Sandro Bonazzola <sbona...@redhat.com> --- D packaging/setup/plugins/ovirt-engine-setup/releasepreview/__init__.py D packaging/setup/plugins/ovirt-engine-setup/releasepreview/misc.py 2 files changed, 0 insertions(+), 85 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/59/17059/1 diff --git a/packaging/setup/plugins/ovirt-engine-setup/releasepreview/__init__.py b/packaging/setup/plugins/ovirt-engine-setup/releasepreview/__init__.py deleted file mode 100644 index d505450..0000000 --- a/packaging/setup/plugins/ovirt-engine-setup/releasepreview/__init__.py +++ /dev/null @@ -1,33 +0,0 @@ -# -# ovirt-engine-setup -- ovirt engine setup -# Copyright (C) 2013 Red Hat, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - - -"""ovirt-host-setup release preview plugin.""" - - -from otopi import util - - -from . import misc - - -@util.export -def createPlugins(context): - misc.Plugin(context=context) - - -# vim: expandtab tabstop=4 shiftwidth=4 diff --git a/packaging/setup/plugins/ovirt-engine-setup/releasepreview/misc.py b/packaging/setup/plugins/ovirt-engine-setup/releasepreview/misc.py deleted file mode 100644 index 4768d80..0000000 --- a/packaging/setup/plugins/ovirt-engine-setup/releasepreview/misc.py +++ /dev/null @@ -1,52 +0,0 @@ -# -# ovirt-engine-setup -- ovirt engine setup -# Copyright (C) 2013 Red Hat, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - - -"""Misc plugin.""" - - -import gettext -_ = lambda m: gettext.dgettext(message=m, domain='ovirt-engine-setup') - - -from otopi import util -from otopi import plugin - - -@util.export -class Plugin(plugin.PluginBase): - """Misc plugin.""" - - def __init__(self, context): - super(Plugin, self).__init__(context=context) - - @plugin.event( - stage=plugin.Stages.STAGE_INIT, - ) - def _init(self): - self.logger.warning( - _( - 'engine-setup-2 is a technical preview, and yet to ' - 'include all functionality that exists in legacy ' - 'engine-setup. ' - 'Specifically, engine-setup-2 does not support upgrade ' - 'from previous installations.' - ) - ) - - -# vim: expandtab tabstop=4 shiftwidth=4 -- To view, visit http://gerrit.ovirt.org/17059 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I15a161f148613d754df2760b13c0ba8bc488db2e Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Sandro Bonazzola <sbona...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches