Alon Bar-Lev has uploaded a new change for review. Change subject: network: support ibm_powerkvm distro ......................................................................
network: support ibm_powerkvm distro Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1131180 Change-Id: Id4b12741845774a3524cb63c6fd3e3419a245cd9 Signed-off-by: Alon Bar-Lev <[email protected]> --- M ChangeLog M src/plugins/otopi/network/iptables.py 2 files changed, 7 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/46/32346/1 diff --git a/ChangeLog b/ChangeLog index 63042c9..361ae4d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ ????-??-?? - Version 1.2.3 + * network: support ibm_powerkvm distribution, rhbz#1131180. 2014-06-30 - Version 1.2.2 diff --git a/src/plugins/otopi/network/iptables.py b/src/plugins/otopi/network/iptables.py index b210e23..7d895b4 100644 --- a/src/plugins/otopi/network/iptables.py +++ b/src/plugins/otopi/network/iptables.py @@ -65,7 +65,12 @@ ), ) def _validate(self): - if self._distribution not in ('redhat', 'fedora', 'centos'): + if self._distribution not in ( + 'redhat', + 'fedora', + 'centos', + 'ibm_powerkvm', + ): self.logger.warning( _('Unsupported distribution for iptables plugin') ) -- To view, visit http://gerrit.ovirt.org/32346 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id4b12741845774a3524cb63c6fd3e3419a245cd9 Gerrit-PatchSet: 1 Gerrit-Project: otopi Gerrit-Branch: otopi-1.2 Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
