e3cb72a0a606449505e2f28cfbf852cf0c4ecf0b
[sliver-openvswitch.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 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 Name: openvswitch
11 Summary: Open vSwitch daemon/database/utilities
12 Group: System Environment/Daemons
13 URL: http://www.openvswitch.org/
14 Vendor: Nicira, Inc.
15 Version: @VERSION@
16
17 License: ASL 2.0
18 Release: 1
19 Source: openvswitch-%{version}.tar.gz
20 Buildroot: /tmp/openvswitch-rpm
21 Requires: openvswitch-kmod, logrotate, python
22
23 %description
24 Open vSwitch provides standard network bridging functions and
25 support for the OpenFlow protocol for remote per-flow control of
26 traffic.
27
28 %prep
29 %setup -q
30
31 %build
32 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=%{_localstatedir} --enable-ssl
33 make %{_smp_mflags}
34
35 %install
36 rm -rf $RPM_BUILD_ROOT
37 make install DESTDIR=$RPM_BUILD_ROOT
38
39 rhel_cp() {
40  base=$1
41  mode=$2
42  dst=$RPM_BUILD_ROOT/$(echo $base | sed 's,_,/,g')
43  install -D -m $mode rhel/$base $dst
44 }
45 rhel_cp etc_init.d_openvswitch 0755
46 rhel_cp etc_logrotate.d_openvswitch 0644
47 rhel_cp etc_sysconfig_network-scripts_ifup-ovs 0755
48 rhel_cp etc_sysconfig_network-scripts_ifdown-ovs 0755
49 rhel_cp usr_share_openvswitch_scripts_sysconfig.template 0644
50
51 docdir=$RPM_BUILD_ROOT/usr/share/doc/openvswitch-%{version}
52 install -d -m755 "$docdir"
53 install -m 0644 FAQ rhel/README.RHEL "$docdir"
54 install python/compat/uuid.py $RPM_BUILD_ROOT/usr/share/openvswitch/python
55 install python/compat/argparse.py $RPM_BUILD_ROOT/usr/share/openvswitch/python
56
57 # Get rid of stuff we don't want to make RPM happy.
58 rm \
59     $RPM_BUILD_ROOT/usr/bin/ovs-test \
60     $RPM_BUILD_ROOT/usr/bin/ovs-l3ping \
61     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-test.8 \
62     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-l3ping.8 \
63     $RPM_BUILD_ROOT/usr/sbin/ovs-vlan-bug-workaround \
64     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-vlan-bug-workaround.8
65 (cd "$RPM_BUILD_ROOT" && rm -rf usr/lib)
66
67 install -d -m 755 $RPM_BUILD_ROOT/var/lib/openvswitch
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %post
73 # Create default or update existing /etc/sysconfig/openvswitch.
74 SYSCONFIG=/etc/sysconfig/openvswitch
75 TEMPLATE=/usr/share/openvswitch/scripts/sysconfig.template
76 if [ ! -e $SYSCONFIG ]; then
77     cp $TEMPLATE $SYSCONFIG
78 else
79     for var in $(awk -F'[ :]' '/^# [_A-Z0-9]+:/{print $2}' $TEMPLATE)
80     do
81         if ! grep $var $SYSCONFIG >/dev/null 2>&1; then
82             echo >> $SYSCONFIG
83             sed -n "/$var:/,/$var=/p" $TEMPLATE >> $SYSCONFIG
84         fi
85     done
86 fi
87
88 # Ensure all required services are set to run
89 /sbin/chkconfig --add openvswitch
90 /sbin/chkconfig openvswitch on
91
92 %preun
93 if [ "$1" = "0" ]; then     # $1 = 0 for uninstall
94     /sbin/service openvswitch stop
95     /sbin/chkconfig --del openvswitch
96 fi
97
98 %postun
99 if [ "$1" = "0" ]; then     # $1 = 0 for uninstall
100     rm -f /etc/openvswitch/conf.db
101     rm -f /etc/sysconfig/openvswitch
102     rm -f /etc/openvswitch/vswitchd.cacert
103 fi
104
105 exit 0
106
107 %files
108 %defattr(-,root,root)
109 /etc/init.d/openvswitch
110 %config(noreplace) /etc/logrotate.d/openvswitch
111 /etc/sysconfig/network-scripts/ifup-ovs
112 /etc/sysconfig/network-scripts/ifdown-ovs
113 /usr/bin/ovs-appctl
114 /usr/bin/ovs-benchmark
115 /usr/bin/ovs-dpctl
116 /usr/bin/ovs-dpctl-top
117 /usr/bin/ovs-ofctl
118 /usr/bin/ovs-parse-backtrace
119 /usr/bin/ovs-pcap
120 /usr/bin/ovs-pki
121 /usr/bin/ovs-tcpundump
122 /usr/bin/ovs-vlan-test
123 /usr/bin/ovs-vsctl
124 /usr/bin/ovsdb-client
125 /usr/bin/ovsdb-tool
126 /usr/bin/vtep-ctl
127 /usr/sbin/ovs-bugtool
128 /usr/sbin/ovs-vswitchd
129 /usr/sbin/ovsdb-server
130 /usr/share/man/man1/ovs-benchmark.1.gz
131 /usr/share/man/man1/ovs-pcap.1.gz
132 /usr/share/man/man1/ovs-tcpundump.1.gz
133 /usr/share/man/man1/ovsdb-client.1.gz
134 /usr/share/man/man1/ovsdb-server.1.gz
135 /usr/share/man/man1/ovsdb-tool.1.gz
136 /usr/share/man/man5/ovs-vswitchd.conf.db.5.gz
137 /usr/share/man/man5/vtep.5.gz
138 /usr/share/man/man8/ovs-appctl.8.gz
139 /usr/share/man/man8/ovs-bugtool.8.gz
140 /usr/share/man/man8/ovs-ctl.8.gz
141 /usr/share/man/man8/ovs-dpctl.8.gz
142 /usr/share/man/man8/ovs-dpctl-top.8.gz
143 /usr/share/man/man8/ovs-ofctl.8.gz
144 /usr/share/man/man8/ovs-parse-backtrace.8.gz
145 /usr/share/man/man8/ovs-pki.8.gz
146 /usr/share/man/man8/ovs-vlan-test.8.gz
147 /usr/share/man/man8/ovs-vsctl.8.gz
148 /usr/share/man/man8/ovs-vswitchd.8.gz
149 /usr/share/man/man8/vtep-ctl.8.gz
150 /usr/share/openvswitch/bugtool-plugins/
151 /usr/share/openvswitch/python/
152 /usr/share/openvswitch/scripts/ovs-bugtool-*
153 /usr/share/openvswitch/scripts/ovs-check-dead-ifs
154 /usr/share/openvswitch/scripts/ovs-ctl
155 /usr/share/openvswitch/scripts/ovs-lib
156 /usr/share/openvswitch/scripts/ovs-save
157 /usr/share/openvswitch/scripts/ovs-vtep
158 /usr/share/openvswitch/scripts/sysconfig.template
159 /usr/share/openvswitch/vswitch.ovsschema
160 /usr/share/openvswitch/vtep.ovsschema
161 /usr/share/doc/openvswitch-%{version}/FAQ
162 /usr/share/doc/openvswitch-%{version}/README.RHEL
163 /var/lib/openvswitch
164 /var/log/openvswitch