]> git.proxmox.com Git - mirror_ovs.git/blame - rhel/openvswitch.spec.in
ovs-benchmark: Remove.
[mirror_ovs.git] / rhel / openvswitch.spec.in
CommitLineData
c434706a
BP
1# Spec file for Open vSwitch on Red Hat Enterprise Linux.
2
e7529141 3# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Nicira, Inc.
c434706a
BP
4#
5# Copying and distribution of this file, with or without modification,
6# are permitted in any medium without royalty provided the copyright
7# notice and this notice are preserved. This file is offered as-is,
8# without warranty of any kind.
329cf232
GS
9#
10# If tests have to be skipped while building, specify the '--without check'
11# option. For example:
12# rpmbuild -bb --without check rhel/openvswitch.spec
c434706a
BP
13
14Name: openvswitch
15Summary: Open vSwitch daemon/database/utilities
16Group: System Environment/Daemons
17URL: http://www.openvswitch.org/
e0edde6f 18Vendor: Nicira, Inc.
c434706a
BP
19Version: @VERSION@
20
21License: ASL 2.0
22Release: 1
23Source: openvswitch-%{version}.tar.gz
24Buildroot: /tmp/openvswitch-rpm
73eb682e 25Requires: logrotate, python >= 2.7, python-six
4465062f 26BuildRequires: openssl-devel
c434706a 27
329cf232
GS
28%bcond_without check
29
c434706a
BP
30%description
31Open vSwitch provides standard network bridging functions and
32support for the OpenFlow protocol for remote per-flow control of
33traffic.
34
35%prep
36%setup -q
37
38%build
8a07709c 39./configure --prefix=/usr --sysconfdir=/etc --localstatedir=%{_localstatedir} --enable-ssl
c434706a
BP
40make %{_smp_mflags}
41
42%install
43rm -rf $RPM_BUILD_ROOT
44make install DESTDIR=$RPM_BUILD_ROOT
53755990
CW
45
46rhel_cp() {
47 base=$1
48 mode=$2
49 dst=$RPM_BUILD_ROOT/$(echo $base | sed 's,_,/,g')
50 install -D -m $mode rhel/$base $dst
51}
52rhel_cp etc_init.d_openvswitch 0755
53rhel_cp etc_logrotate.d_openvswitch 0644
54rhel_cp etc_sysconfig_network-scripts_ifup-ovs 0755
55rhel_cp etc_sysconfig_network-scripts_ifdown-ovs 0755
56rhel_cp usr_share_openvswitch_scripts_sysconfig.template 0644
57
c434706a
BP
58# Get rid of stuff we don't want to make RPM happy.
59rm \
0bc1b46a
BP
60 $RPM_BUILD_ROOT/usr/bin/ovs-testcontroller \
61 $RPM_BUILD_ROOT/usr/share/man/man8/ovs-testcontroller.8 \
9d7c5643 62 $RPM_BUILD_ROOT/usr/bin/ovs-test \
2d8bdd8f 63 $RPM_BUILD_ROOT/usr/bin/ovs-l3ping \
9d7c5643 64 $RPM_BUILD_ROOT/usr/share/man/man8/ovs-test.8 \
2d8bdd8f 65 $RPM_BUILD_ROOT/usr/share/man/man8/ovs-l3ping.8 \
c434706a 66 $RPM_BUILD_ROOT/usr/sbin/ovs-vlan-bug-workaround \
1247b5a7
PM
67 $RPM_BUILD_ROOT/usr/share/man/man8/ovs-vlan-bug-workaround.8 \
68 $RPM_BUILD_ROOT/usr/bin/ovn-* \
69 $RPM_BUILD_ROOT/usr/share/man/man?/ovn-* \
70 $RPM_BUILD_ROOT/usr/share/openvswitch/ovn-* \
71 $RPM_BUILD_ROOT/usr/share/openvswitch/scripts/ovn-*
d893c3e0 72(cd "$RPM_BUILD_ROOT" && rm -rf usr/lib)
2fd84d5e 73(cd "$RPM_BUILD_ROOT" && rm -rf usr/include)
c434706a
BP
74
75install -d -m 755 $RPM_BUILD_ROOT/var/lib/openvswitch
76
329cf232
GS
77%check
78%if %{with check}
79 if make check TESTSUITEFLAGS='%{_smp_mflags}' ||
80 make check TESTSUITEFLAGS='--recheck'; then :;
81 else
82 cat tests/testsuite.log
83 exit 1
84 fi
85%endif
86
c434706a
BP
87%clean
88rm -rf $RPM_BUILD_ROOT
89
90%post
91# Create default or update existing /etc/sysconfig/openvswitch.
92SYSCONFIG=/etc/sysconfig/openvswitch
93TEMPLATE=/usr/share/openvswitch/scripts/sysconfig.template
94if [ ! -e $SYSCONFIG ]; then
95 cp $TEMPLATE $SYSCONFIG
96else
97 for var in $(awk -F'[ :]' '/^# [_A-Z0-9]+:/{print $2}' $TEMPLATE)
98 do
99 if ! grep $var $SYSCONFIG >/dev/null 2>&1; then
100 echo >> $SYSCONFIG
101 sed -n "/$var:/,/$var=/p" $TEMPLATE >> $SYSCONFIG
102 fi
103 done
104fi
105
106# Ensure all required services are set to run
107/sbin/chkconfig --add openvswitch
108/sbin/chkconfig openvswitch on
109
110%preun
111if [ "$1" = "0" ]; then # $1 = 0 for uninstall
112 /sbin/service openvswitch stop
113 /sbin/chkconfig --del openvswitch
114fi
115
116%postun
117if [ "$1" = "0" ]; then # $1 = 0 for uninstall
118 rm -f /etc/openvswitch/conf.db
119 rm -f /etc/sysconfig/openvswitch
120 rm -f /etc/openvswitch/vswitchd.cacert
121fi
122
123exit 0
124
125%files
126%defattr(-,root,root)
f0dc83b7 127%dir /etc/openvswitch
2c9907cd
AW
128/etc/bash_completion.d/ovs-appctl-bashcomp.bash
129/etc/bash_completion.d/ovs-vsctl-bashcomp.bash
c434706a 130/etc/init.d/openvswitch
53755990 131%config(noreplace) /etc/logrotate.d/openvswitch
0fb42626
AF
132/etc/sysconfig/network-scripts/ifup-ovs
133/etc/sysconfig/network-scripts/ifdown-ovs
c434706a
BP
134/usr/bin/ovs-appctl
135/usr/bin/ovs-dpctl
14b4c575 136/usr/bin/ovs-dpctl-top
ec8f0f0c 137/usr/bin/ovs-docker
c434706a 138/usr/bin/ovs-ofctl
013061cf 139/usr/bin/ovs-parse-backtrace
c434706a 140/usr/bin/ovs-pcap
def046d5 141/usr/bin/ovs-pki
c434706a
BP
142/usr/bin/ovs-tcpundump
143/usr/bin/ovs-vlan-test
144/usr/bin/ovs-vsctl
145/usr/bin/ovsdb-client
146/usr/bin/ovsdb-tool
dd2d06c3 147/usr/bin/vtep-ctl
51a5f442 148/usr/sbin/ovs-bugtool
c434706a
BP
149/usr/sbin/ovs-vswitchd
150/usr/sbin/ovsdb-server
151/usr/share/man/man1/ovs-pcap.1.gz
152/usr/share/man/man1/ovs-tcpundump.1.gz
153/usr/share/man/man1/ovsdb-client.1.gz
154/usr/share/man/man1/ovsdb-server.1.gz
155/usr/share/man/man1/ovsdb-tool.1.gz
156/usr/share/man/man5/ovs-vswitchd.conf.db.5.gz
dd2d06c3 157/usr/share/man/man5/vtep.5.gz
c434706a 158/usr/share/man/man8/ovs-appctl.8.gz
2ad7bf32 159/usr/share/man/man8/ovs-bugtool.8.gz
c434706a
BP
160/usr/share/man/man8/ovs-ctl.8.gz
161/usr/share/man/man8/ovs-dpctl.8.gz
14b4c575 162/usr/share/man/man8/ovs-dpctl-top.8.gz
c434706a 163/usr/share/man/man8/ovs-ofctl.8.gz
013061cf 164/usr/share/man/man8/ovs-parse-backtrace.8.gz
def046d5 165/usr/share/man/man8/ovs-pki.8.gz
c434706a
BP
166/usr/share/man/man8/ovs-vlan-test.8.gz
167/usr/share/man/man8/ovs-vsctl.8.gz
168/usr/share/man/man8/ovs-vswitchd.8.gz
dd2d06c3 169/usr/share/man/man8/vtep-ctl.8.gz
4b38c153 170/usr/share/openvswitch/bugtool-plugins/
c434706a 171/usr/share/openvswitch/python/
b2df0225 172/usr/share/openvswitch/scripts/ovs-bugtool-*
2dc7590d 173/usr/share/openvswitch/scripts/ovs-check-dead-ifs
c434706a 174/usr/share/openvswitch/scripts/ovs-ctl
d422c118 175/usr/share/openvswitch/scripts/ovs-lib
c434706a 176/usr/share/openvswitch/scripts/ovs-save
dd2d06c3 177/usr/share/openvswitch/scripts/ovs-vtep
c434706a
BP
178/usr/share/openvswitch/scripts/sysconfig.template
179/usr/share/openvswitch/vswitch.ovsschema
dd2d06c3 180/usr/share/openvswitch/vtep.ovsschema
542cc9bb 181%doc COPYING DESIGN.md INSTALL.SSL.md NOTICE README.md WHY-OVS.md FAQ.md NEWS
a36de779 182%doc INSTALL.DPDK.md rhel/README.RHEL README-native-tunneling.md
c434706a 183/var/lib/openvswitch
c649fe54 184/var/log/openvswitch