summaryrefslogtreecommitdiffstats
path: root/build/rpm_specs/networking-vpp.spec
blob: 806878361486c90f602cc8e70b51d3b9d7fb5661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
%define release 1

Summary:   OpenStack Networking for VPP
Name:      python-networking-vpp
Version:   17.07
Release:   %{release}%{?git}%{?dist}

License:   Apache 2.0
Group:     Applications/Internet
Source0:   python-networking-vpp.tar.gz
Url:       https://github.com/openstack/networking-vpp/

BuildArch: noarch
AutoReq:   no
Requires:  vpp
Vendor:    OpenStack <openstack-dev@lists.openstack.org>
Packager:  Feng Pan <fpan@redhat.com>

%description
ML2 Mechanism driver and small control plane for OpenVPP forwarder

%prep
%setup -q
cat << EOF > %{_builddir}/neutron-vpp-agent.service
[Unit]
Description=Networking VPP ML2 Agent

[Service]
ExecStartPre=/usr/bin/systemctl is-active vpp
ExecStart=/usr/bin/vpp-agent --config-file /etc/neutron/plugins/ml2/vpp_agent.ini
Type=simple
Restart=on-failure
RestartSec=5s

[Install]
WantedBy=multi-user.target

EOF

%install
python setup.py install -O1 --root=%{buildroot} --record=INSTALLED_FILES
mkdir -p %{buildroot}%{_libdir}/systemd/system
install %{_builddir}/neutron-vpp-agent.service %{buildroot}%{_unitdir}

%clean
rm -rf %{buildroot}

%files -f INSTALLED_FILES
%defattr(-,root,root)
%attr(644,root,root) %{_unitdir}/neutron-vpp-agent.service