python: Backport argparse to older platforms.
[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 Nicira Networks, 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 Networks, 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 %{?build_number}
33 make %{_smp_mflags}
34
35 %install
36 rm -rf $RPM_BUILD_ROOT
37 make install DESTDIR=$RPM_BUILD_ROOT
38 install -d -m 755 $RPM_BUILD_ROOT/etc
39 install -d -m 755 $RPM_BUILD_ROOT/etc/init.d
40 install -m 755 rhel/etc_init.d_openvswitch \
41     $RPM_BUILD_ROOT/etc/init.d/openvswitch
42 install -d -m 755 $RPM_BUILD_ROOT/etc/sysconfig
43 install -d -m 755 $RPM_BUILD_ROOT/etc/logrotate.d
44 install -m 755 rhel/etc_logrotate.d_openvswitch \
45     $RPM_BUILD_ROOT/etc/logrotate.d/openvswitch
46 install -d -m 755 $RPM_BUILD_ROOT/usr/share/openvswitch/scripts
47 install -m 755 rhel/usr_share_openvswitch_scripts_sysconfig.template \
48     $RPM_BUILD_ROOT/usr/share/openvswitch/scripts/sysconfig.template
49 install python/compat/uuid.py $RPM_BUILD_ROOT/usr/share/openvswitch/python
50 install python/compat/argparse.py $RPM_BUILD_ROOT/usr/share/openvswitch/python
51
52 # Get rid of stuff we don't want to make RPM happy.
53 rm \
54     $RPM_BUILD_ROOT/usr/bin/ovs-controller \
55     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-controller.8 \
56     $RPM_BUILD_ROOT/usr/sbin/ovs-vlan-bug-workaround \
57     $RPM_BUILD_ROOT/usr/share/man/man8/ovs-vlan-bug-workaround.8
58
59 install -d -m 755 $RPM_BUILD_ROOT/var/lib/openvswitch
60
61 %clean
62 rm -rf $RPM_BUILD_ROOT
63
64 %post
65 # Create default or update existing /etc/sysconfig/openvswitch.
66 SYSCONFIG=/etc/sysconfig/openvswitch
67 TEMPLATE=/usr/share/openvswitch/scripts/sysconfig.template
68 if [ ! -e $SYSCONFIG ]; then
69     cp $TEMPLATE $SYSCONFIG
70 else
71     for var in $(awk -F'[ :]' '/^# [_A-Z0-9]+:/{print $2}' $TEMPLATE)
72     do
73         if ! grep $var $SYSCONFIG >/dev/null 2>&1; then
74             echo >> $SYSCONFIG
75             sed -n "/$var:/,/$var=/p" $TEMPLATE >> $SYSCONFIG
76         fi
77     done
78 fi
79
80 # Ensure all required services are set to run
81 /sbin/chkconfig --add openvswitch
82 /sbin/chkconfig openvswitch on
83
84 %preun
85 if [ "$1" = "0" ]; then     # $1 = 0 for uninstall
86     /sbin/service openvswitch stop
87     /sbin/chkconfig --del openvswitch
88 fi
89
90 %postun
91 if [ "$1" = "0" ]; then     # $1 = 0 for uninstall
92     rm -f /etc/openvswitch/conf.db
93     rm -f /etc/sysconfig/openvswitch
94     rm -f /etc/openvswitch/vswitchd.cacert
95 fi
96
97 exit 0
98
99 %files
100 %defattr(-,root,root)
101 /etc/init.d/openvswitch
102 /etc/logrotate.d/openvswitch
103 /etc/openvswitch/bugtool-plugins/*
104 /usr/bin/ovs-appctl
105 /usr/bin/ovs-benchmark
106 /usr/bin/ovs-dpctl
107 /usr/bin/ovs-ofctl
108 /usr/bin/ovs-parse-leaks
109 /usr/bin/ovs-pcap
110 /usr/bin/ovs-pki
111 /usr/bin/ovs-tcpundump
112 /usr/bin/ovs-vlan-test
113 /usr/bin/ovs-vsctl
114 /usr/bin/ovsdb-client
115 /usr/bin/ovsdb-tool
116 /usr/sbin/ovs-brcompatd
117 /usr/sbin/ovs-bugtool
118 /usr/sbin/ovs-vswitchd
119 /usr/sbin/ovsdb-server
120 /usr/share/man/man1/ovs-benchmark.1.gz
121 /usr/share/man/man1/ovs-pcap.1.gz
122 /usr/share/man/man1/ovs-tcpundump.1.gz
123 /usr/share/man/man1/ovsdb-client.1.gz
124 /usr/share/man/man1/ovsdb-server.1.gz
125 /usr/share/man/man1/ovsdb-tool.1.gz
126 /usr/share/man/man5/ovs-vswitchd.conf.db.5.gz
127 /usr/share/man/man8/ovs-appctl.8.gz
128 /usr/share/man/man8/ovs-brcompatd.8.gz
129 /usr/share/man/man8/ovs-bugtool.8.gz
130 /usr/share/man/man8/ovs-ctl.8.gz
131 /usr/share/man/man8/ovs-dpctl.8.gz
132 /usr/share/man/man8/ovs-ofctl.8.gz
133 /usr/share/man/man8/ovs-parse-leaks.8.gz
134 /usr/share/man/man8/ovs-pki.8.gz
135 /usr/share/man/man8/ovs-vlan-test.8.gz
136 /usr/share/man/man8/ovs-vsctl.8.gz
137 /usr/share/man/man8/ovs-vswitchd.8.gz
138 /usr/share/openvswitch/python/
139 /usr/share/openvswitch/scripts/ovs-bugtool-*
140 /usr/share/openvswitch/scripts/ovs-ctl
141 /usr/share/openvswitch/scripts/ovs-lib.sh
142 /usr/share/openvswitch/scripts/ovs-save
143 /usr/share/openvswitch/scripts/sysconfig.template
144 /usr/share/openvswitch/vswitch.ovsschema
145 /var/lib/openvswitch