
* Config doc: http://wiki.openstack.org/QuantumDevstackOvsXcp * The Open vSwitch agent needs to be deployed on domU but interact with a dom0 bridge. * Add a root wrapper and associated XenAPI plugin to allow the agent to execute networking commands against dom0 from domU. * Update ovs_lib mac address discovery to use ip_lib to ensure that discovery works even for bridges not local to the agent (i.e. dom0 bridges). A bridge configured with a dom0 root wrapper will execute ip link on dom0. * Update ip_lib to use a root helper by default to ensure that the 'ip' command will execute on dom0. * Remove obselete rpm spec and installer for dom0 agent. * Credit where credit is due - the XenAPI plugin and its packaging were largely copied from nova. * Supports blueprint xenapi-ovs Change-Id: I7795446ee1267712c896f5cb3401f84fb1763ce7
31 lines
750 B
RPMSpec
31 lines
750 B
RPMSpec
Name: openstack-quantum-xen-plugins
|
|
Version: %{version}
|
|
Release: 1
|
|
Summary: Files for XenAPI support.
|
|
License: ASL 2.0
|
|
Group: Applications/Utilities
|
|
Source0: openstack-quantum-xen-plugins.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
%define debug_package %{nil}
|
|
|
|
%description
|
|
This package contains files that are required for XenAPI support for Quantum.
|
|
|
|
%prep
|
|
%setup -q -n openstack-quantum-xen-plugins
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT/etc
|
|
cp -r xapi.d $RPM_BUILD_ROOT/etc
|
|
chmod a+x $RPM_BUILD_ROOT/etc/xapi.d/plugins/*
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
/etc/xapi.d/plugins/*
|