rhel: Use same rundir for ovs and ovn.
[cascardo/ovs.git] / rhel / openvswitch.spec.in
1 # Spec file for Open vSwitch on Red Hat Enterprise Linux.
2
3 # Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015 Nicira, Inc.
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.
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
13
14 Name: openvswitch
15 Summary: Open vSwitch daemon/database/utilities
16 Group: System Environment/Daemons
17 URL: http://www.openvswitch.org/
18 Vendor: Nicira, Inc.
19 Version: @VERSION@
20
21 License: ASL 2.0
22 Release: 1
23 Source: openvswitch-%{version}.tar.gz
24 Buildroot: /tmp/openvswitch-rpm
25 Requires: logrotate, python
26 BuildRequires: openssl-devel
27
28 %bcond_without check
29
30 %description
31 Open vSwitch provides standard network bridging functions and
32 support for the OpenFlow protocol for remote per-flow control of
33 traffic.
34
35 %prep
36 %setup -q
37
38 %build
39 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=%{_localstatedir} --enable-ssl
40 make %{_smp_mflags}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44 make install DESTDIR=$RPM_BUILD_ROOT
45
46 rhel_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 }
52 rhel_cp etc_init.d_openvswitch 0755
53 rhel_cp etc_logrotate.d_openvswitch 0644
54 rhel_cp etc_sysconfig_network-scripts_ifup-ovs 0755
55 rhel_cp etc_sysconfig_network-scripts_ifdown-ovs 0755
56 rhel_cp usr_share_openvswitch_scripts_sysconfig.template 0644
57
58 # Get rid of stuff we don't want to make RPM happy.
59 rm \
60     $RPM_BUILD_ROOT/usr/bin/ovs-testcontroller \
61     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-testcontroller.8 \
62     $RPM_BUILD_ROOT/usr/bin/ovs-test \
63     $RPM_BUILD_ROOT/usr/bin/ovs-l3ping \
64     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-test.8 \
65     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-l3ping.8 \
66     $RPM_BUILD_ROOT/usr/sbin/ovs-vlan-bug-workaround \
67     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-vlan-bug-workaround.8
68 (cd "$RPM_BUILD_ROOT" && rm -rf usr/lib)
69 (cd "$RPM_BUILD_ROOT" && rm -rf usr/include)
70
71 install -d -m 755 $RPM_BUILD_ROOT/var/lib/openvswitch
72
73 %check
74 %if %{with check}
75     if make check TESTSUITEFLAGS='%{_smp_mflags}' ||
76        make check TESTSUITEFLAGS='--recheck'; then :;
77     else
78         cat tests/testsuite.log
79         exit 1
80     fi
81 %endif
82
83 %clean
84 rm -rf $RPM_BUILD_ROOT
85
86 %post
87 # Create default or update existing /etc/sysconfig/openvswitch.
88 SYSCONFIG=/etc/sysconfig/openvswitch
89 TEMPLATE=/usr/share/openvswitch/scripts/sysconfig.template
90 if [ ! -e $SYSCONFIG ]; then
91     cp $TEMPLATE $SYSCONFIG
92 else
93     for var in $(awk -F'[ :]' '/^# [_A-Z0-9]+:/{print $2}' $TEMPLATE)
94     do
95         if ! grep $var $SYSCONFIG >/dev/null 2>&1; then
96             echo >> $SYSCONFIG
97             sed -n "/$var:/,/$var=/p" $TEMPLATE >> $SYSCONFIG
98         fi
99     done
100 fi
101
102 # Ensure all required services are set to run
103 /sbin/chkconfig --add openvswitch
104 /sbin/chkconfig openvswitch on
105
106 %preun
107 if [ "$1" = "0" ]; then     # $1 = 0 for uninstall
108     /sbin/service openvswitch stop
109     /sbin/chkconfig --del openvswitch
110 fi
111
112 %postun
113 if [ "$1" = "0" ]; then     # $1 = 0 for uninstall
114     rm -f /etc/openvswitch/conf.db
115     rm -f /etc/sysconfig/openvswitch
116     rm -f /etc/openvswitch/vswitchd.cacert
117 fi
118
119 exit 0
120
121 %files
122 %defattr(-,root,root)
123 /etc/bash_completion.d/ovs-appctl-bashcomp.bash
124 /etc/bash_completion.d/ovs-vsctl-bashcomp.bash
125 /etc/init.d/openvswitch
126 %config(noreplace) /etc/logrotate.d/openvswitch
127 /etc/sysconfig/network-scripts/ifup-ovs
128 /etc/sysconfig/network-scripts/ifdown-ovs
129 /usr/bin/ovs-appctl
130 /usr/bin/ovs-benchmark
131 /usr/bin/ovs-dpctl
132 /usr/bin/ovs-dpctl-top
133 /usr/bin/ovs-docker
134 /usr/bin/ovs-ofctl
135 /usr/bin/ovs-parse-backtrace
136 /usr/bin/ovs-pcap
137 /usr/bin/ovs-pki
138 /usr/bin/ovs-tcpundump
139 /usr/bin/ovs-vlan-test
140 /usr/bin/ovs-vsctl
141 /usr/bin/ovsdb-client
142 /usr/bin/ovsdb-tool
143 /usr/bin/vtep-ctl
144 /usr/sbin/ovs-bugtool
145 /usr/sbin/ovs-vswitchd
146 /usr/sbin/ovsdb-server
147 /usr/share/man/man1/ovs-benchmark.1.gz
148 /usr/share/man/man1/ovs-pcap.1.gz
149 /usr/share/man/man1/ovs-tcpundump.1.gz
150 /usr/share/man/man1/ovsdb-client.1.gz
151 /usr/share/man/man1/ovsdb-server.1.gz
152 /usr/share/man/man1/ovsdb-tool.1.gz
153 /usr/share/man/man5/ovs-vswitchd.conf.db.5.gz
154 /usr/share/man/man5/vtep.5.gz
155 /usr/share/man/man8/ovs-appctl.8.gz
156 /usr/share/man/man8/ovs-bugtool.8.gz
157 /usr/share/man/man8/ovs-ctl.8.gz
158 /usr/share/man/man8/ovs-dpctl.8.gz
159 /usr/share/man/man8/ovs-dpctl-top.8.gz
160 /usr/share/man/man8/ovs-ofctl.8.gz
161 /usr/share/man/man8/ovs-parse-backtrace.8.gz
162 /usr/share/man/man8/ovs-pki.8.gz
163 /usr/share/man/man8/ovs-vlan-test.8.gz
164 /usr/share/man/man8/ovs-vsctl.8.gz
165 /usr/share/man/man8/ovs-vswitchd.8.gz
166 /usr/share/man/man8/vtep-ctl.8.gz
167 /usr/share/openvswitch/bugtool-plugins/
168 /usr/share/openvswitch/python/
169 /usr/share/openvswitch/scripts/ovs-bugtool-*
170 /usr/share/openvswitch/scripts/ovs-check-dead-ifs
171 /usr/share/openvswitch/scripts/ovs-ctl
172 /usr/share/openvswitch/scripts/ovs-lib
173 /usr/share/openvswitch/scripts/ovs-save
174 /usr/share/openvswitch/scripts/ovs-vtep
175 /usr/share/openvswitch/scripts/sysconfig.template
176 /usr/share/openvswitch/vswitch.ovsschema
177 /usr/share/openvswitch/vtep.ovsschema
178 %doc COPYING DESIGN.md INSTALL.SSL.md NOTICE README.md WHY-OVS.md FAQ.md NEWS
179 %doc INSTALL.DPDK.md rhel/README.RHEL README-native-tunneling.md
180 /var/lib/openvswitch
181 /var/log/openvswitch
182 %exclude /usr/bin/ovn-*
183 %exclude /usr/share/man/man1/ovs-sim.1.gz
184 %exclude /usr/share/man/man5/ovn-*
185 %exclude /usr/share/man/man7/ovn-*
186 %exclude /usr/share/man/man8/ovn-*
187 %exclude /usr/share/openvswitch/ovn-*
188 %exclude /usr/share/openvswitch/scripts/ovn-*