Add ipset package as a dependency to Neutron
[openstack-build/neutron-build.git] / rpm / SPECS / openstack-neutron.spec
1 %global release_name icehouse
2
3 Name:           openstack-neutron
4 Version:        2014.2
5 Release:        1%{?dist}
6 Provides:       openstack-quantum = %{version}-%{release}
7 Obsoletes:      openstack-quantum < 2013.2-0.3.b3
8
9 Summary:        OpenStack Networking Service
10
11 Group:          Applications/System
12 License:        ASL 2.0
13 URL:            http://launchpad.net/neutron/
14
15 Source0: neutron-2014.2.tar.gz
16 Source1:        neutron.logrotate
17 Source2:        neutron-sudoers
18
19 Source10:       neutron-server.init
20 Source20:       neutron-server.upstart
21 Source11:       neutron-linuxbridge-agent.init
22 Source21:       neutron-linuxbridge-agent.upstart
23 Source12:       neutron-openvswitch-agent.init
24 Source22:       neutron-openvswitch-agent.upstart
25 Source13:       neutron-ryu-agent.init
26 Source23:       neutron-ryu-agent.upstart
27 Source14:       neutron-nec-agent.init
28 Source24:       neutron-nec-agent.upstart
29 Source15:       neutron-dhcp-agent.init
30 Source25:       neutron-dhcp-agent.upstart
31 Source16:       neutron-l3-agent.init
32 Source26:       neutron-l3-agent.upstart
33 Source17:       neutron-metadata-agent.init
34 Source27:       neutron-metadata-agent.upstart
35 Source18:       neutron-ovs-cleanup.init
36 Source28:       neutron-ovs-cleanup.upstart
37 Source19:       neutron-lbaas-agent.init
38 Source29:       neutron-lbaas-agent.upstart
39 Source30:       neutron-mlnx-agent.init
40 Source40:       neutron-mlnx-agent.upstart
41 Source31:       neutron-vpn-agent.init
42 Source41:       neutron-vpn-agent.upstart
43 Source32:       neutron-metering-agent.init
44 Source42:       neutron-metering-agent.upstart
45
46 Source90:       neutron-dist.conf
47 #
48 # patches_base=2014.1.1+1
49 #
50 Patch0001: 0001-remove-runtime-dependency-on-pbr.patch
51
52 BuildArch:      noarch
53
54 BuildRequires:  python2-devel
55 BuildRequires:  python-setuptools
56 # Build require these parallel versions
57 # as setup.py build imports neutron.openstack.common.setup
58 # which will then check for these
59 BuildRequires:  python-sqlalchemy
60 BuildRequires:  python-webob
61 BuildRequires:  python-paste-deploy
62 BuildRequires:  python-routes
63 BuildRequires:  python-jinja2-26
64 BuildRequires:  dos2unix
65 BuildRequires:  python-pbr
66 BuildRequires:  python-d2to1
67
68 Requires:   ipset
69 Requires:       dnsmasq-utils
70 Requires:       python-neutron = %{version}-%{release}
71 Requires:       python-oslo-rootwrap
72 Requires:       openstack-utils
73 Requires:   openstack-neutron-bigswitch
74 Requires:   openstack-neutron-brocade
75 Requires:   openstack-neutron-cisco
76 Requires:   openstack-neutron-hyperv
77 Requires:   openstack-neutron-vmware
78 Requires:   openstack-neutron-openvswitch
79 Requires:   openstack-neutron-ryu
80 Requires:   openstack-neutron-linuxbridge
81 Requires:   openstack-neutron-metaplugin
82 Requires:   openstack-neutron-mellanox
83 Requires:   openstack-neutron-nec
84 Requires:   openstack-neutron-nuage
85
86 Requires(post):         chkconfig
87 Requires(postun):       initscripts
88 Requires(preun):        chkconfig
89 Requires(preun):        initscripts
90 Requires(pre):          shadow-utils
91
92 # dnsmasq is not a hard requirement, but is currently the only option
93 # when neutron-dhcp-agent is deployed.
94 Requires:       dnsmasq
95
96
97 %description
98 Neutron is a virtual network service for Openstack. Just like
99 OpenStack Nova provides an API to dynamically request and configure
100 virtual servers, Neutron provides an API to dynamically request and
101 configure virtual networks. These networks connect "interfaces" from
102 other OpenStack services (e.g., virtual NICs from Nova VMs). The
103 Neutron API supports extensions to provide advanced network
104 capabilities (e.g., QoS, ACLs, network monitoring, etc.)
105
106
107 %package -n python-neutron
108 Summary:        Neutron Python libraries
109 Group:          Applications/System
110
111 Provides:       python-quantum = %{version}-%{release}
112 Obsoletes:      python-quantum < 2013.2-0.3.b3
113
114 Requires:       MySQL-python
115 Requires:       python-alembic >= 0.6.4
116 Requires:       python-amqplib
117 Requires:       python-anyjson >= 0.3.3
118 Requires:       python-babel >= 1.3
119 Requires:       python-eventlet >= 0.15.1
120 Requires:       python-greenlet >= 0.3.2
121 Requires:       python-httplib2 >= 0.7.5
122 Requires:       python-iso8601 >= 0.1.9
123 Requires:       python-jsonrpclib
124 Requires:       python-jinja2
125 Requires:       python-keystoneclient >= 1:0.10.0
126 Requires:       python-keystonemiddleware >= 1.0.0
127 Requires:       python-kombu >= 2.4.8
128 Requires:       python-lxml
129 Requires:       python-oslo-messaging >= 1.4.0
130 Requires:       python-oslo-rootwrap >= 1.3.0
131 Requires:       python-requests >= 1.2.1
132 Requires:       python-paste-deploy >= 1.5.0
133 Requires:       python-routes >= 1.12.3
134 Requires:       python-sqlalchemy >= 0.8.4
135 Requires:       python-webob >= 1.2.3
136 Requires:       python-netaddr >= 0.7.6
137 Requires:       python-oslo-config >= 1.4.0
138 Requires:       python-oslo-db >= 0.4.0
139 Requires:       python-qpid
140 Requires:       python-neutronclient >= 2.3.6
141 Requires:       python-stevedore >= 0.14
142 Requires:       python-six >= 1.7.0
143
144 Requires:   python-novaclient >= 1:2.17.0
145 Requires:       sudo
146
147
148 %description -n python-neutron
149 Neutron provides an API to dynamically request and configure virtual
150 networks.
151
152 This package contains the neutron Python library.
153
154
155 %package bigswitch
156 Summary:        Neutron Big Switch plugin
157 Group:          Applications/System
158
159 Provides:       openstack-quantum-bigswitch = %{version}-%{release}
160 Obsoletes:      openstack-quantum-bigswitch < 2013.2-0.3.b3
161
162 Requires:       openstack-neutron = %{version}-%{release}
163
164
165 %description bigswitch
166 Neutron provides an API to dynamically request and configure virtual
167 networks.
168
169 This package contains the neutron plugin that implements virtual
170 networks using the FloodLight Openflow Controller or the Big Switch
171 Networks Controller.
172
173
174 %package brocade
175 Summary:        Neutron Brocade plugin
176 Group:          Applications/System
177
178 Provides:       openstack-quantum-brocade = %{version}-%{release}
179 Obsoletes:      openstack-quantum-brocade < 2013.2-0.3.b3
180
181 Requires:       openstack-neutron = %{version}-%{release}
182
183
184 %description brocade
185 Neutron provides an API to dynamically request and configure virtual
186 networks.
187
188 This package contains the neutron plugin that implements virtual
189 networks using Brocade VCS switches running NOS.
190
191
192 %package cisco
193 Summary:        Neutron Cisco plugin
194 Group:          Applications/System
195
196 Provides:       openstack-quantum-cisco = %{version}-%{release}
197 Obsoletes:      openstack-quantum-cisco < 2013.2-0.3.b3
198
199 Requires:       openstack-neutron = %{version}-%{release}
200 Requires:       python-configobj
201
202
203 %description cisco
204 Neutron provides an API to dynamically request and configure virtual
205 networks.
206
207 This package contains the neutron plugin that implements virtual
208 networks using Cisco UCS and Nexus.
209
210
211 %package hyperv
212 Summary:        Neutron Hyper-V plugin
213 Group:          Applications/System
214
215 Provides:       openstack-quantum-hyperv = %{version}-%{release}
216 Obsoletes:      openstack-quantum-hyperv < 2013.2-0.3.b3
217
218 Requires:       openstack-neutron = %{version}-%{release}
219
220
221 %description hyperv
222 Neutron provides an API to dynamically request and configure virtual
223 networks.
224
225 This package contains the neutron plugin that implements virtual
226 networks using Microsoft Hyper-V.
227
228
229 %package ibm
230 Summary:        Neutron IBM plugin
231 Group:          Applications/System
232
233 Requires:       openstack-neutron = %{version}-%{release}
234
235
236 %description ibm
237 Neutron provides an API to dynamically request and configure virtual
238 networks.
239
240 This package contains the neutron plugin that implements virtual
241 networks from IBM.
242
243
244 %package linuxbridge
245 Summary:        Neutron linuxbridge plugin
246 Group:          Applications/System
247
248 Provides:       openstack-quantum-linuxbridge = %{version}-%{release}
249 Obsoletes:      openstack-quantum-linuxbridge < 2013.2-0.3.b3
250
251 Requires:       bridge-utils
252 Requires:       openstack-neutron = %{version}-%{release}
253
254
255 %description linuxbridge
256 Neutron provides an API to dynamically request and configure virtual
257 networks.
258
259 This package contains the neutron plugin that implements virtual
260 networks as VLANs using Linux bridging.
261
262
263 %package midonet
264 Summary:        Neutron MidoNet plugin
265 Group:          Applications/System
266
267 Provides:       openstack-quantum-midonet = %{version}-%{release}
268 Obsoletes:      openstack-quantum-midonet < 2013.2-0.3.b3
269
270 Requires:       openstack-neutron = %{version}-%{release}
271
272
273 %description midonet
274 Neutron provides an API to dynamically request and configure virtual
275 networks.
276
277 This package contains the neutron plugin that implements virtual
278 networks using MidoNet from Midokura.
279
280
281 %package ml2
282 Summary:        Neutron ML2 plugin
283 Group:          Applications/System
284
285 Provides:       openstack-quantum-ml2 = %{version}-%{release}
286 Obsoletes:      openstack-quantum-ml2 < 2013.2-0.3.b3
287
288 Requires:       openstack-neutron = %{version}-%{release}
289
290
291 %description ml2
292 Neutron provides an API to dynamically request and configure virtual
293 networks.
294
295 This package contains a neutron plugin that allows the use of drivers
296 to support separately extensible sets of network types and the mechanisms
297 for accessing those types.
298
299
300 %package mellanox
301 Summary:        Neutron Mellanox plugin
302 Group:          Applications/System
303
304 Provides:       openstack-quantum-mellanox = %{version}-%{release}
305 Obsoletes:      openstack-quantum-mellanox < 2013.2-0.3.b3
306
307 Requires:       openstack-neutron = %{version}-%{release}
308
309
310 %description mellanox
311 This plugin implements Neutron v2 APIs with support for Mellanox embedded
312 switch functionality as part of the VPI (Ethernet/InfiniBand) HCA.
313
314
315 %package nuage
316 Summary:    Neutron Nuage plugin
317 Group:      Applications/System
318
319 Requires:   openstack-neutron = %{version}-%{release}
320
321
322 %description nuage
323 This plugin implements Neutron v2 APIs with support for Nuage Networks
324 Virtual Service Platform (VSP).
325
326
327 %package ofagent
328 Summary:        Neutron ofagent plugin from ryu project
329 Group:          Applications/system
330
331 Requires:       openstack-neutron = %{version}-%{release}
332
333 %description ofagent
334 This plugin implements Neutron v2 APIs with support for the ryu ofagent
335 plugin.
336
337
338 %package oneconvergence-nvsd
339 Summary:       Neutron One Convergence NVSD plugin
340 Group:         Applications/System
341
342 Requires:      openstack-neutron = %{version}-%{release}
343
344
345 %description oneconvergence-nvsd
346 Neutron provides an API to dynamnically request and configure virtual
347 networks.
348
349 This package contains the neutron plugin that implements virtual
350 networks using One Convergence NVSD
351
352 %package opencontrail
353 Summary:       Neutron opencontrail plugin
354 Group:         Applications/System
355
356 Requires:      openstack-neutron = %{version}-%{release}
357
358
359 %description    opencontrail
360
361 %package openvswitch
362 Summary:        Neutron openvswitch plugin
363 Group:          Applications/System
364
365 Provides:       openstack-quantum-openvswitch = %{version}-%{release}
366 Obsoletes:      openstack-quantum-openvswitch < 2013.2-0.3.b3
367
368 Requires:       openstack-neutron = %{version}-%{release}
369 Requires:       openvswitch
370
371
372 %description openvswitch
373 Neutron provides an API to dynamically request and configure virtual
374 networks.
375
376 This package contains the neutron plugin that implements virtual
377 networks using Open vSwitch.
378
379
380 %package plumgrid
381 Summary:        Neutron PLUMgrid plugin
382 Group:          Applications/System
383
384 Provides:       openstack-quantum-plumgrid = %{version}-%{release}
385 Obsoletes:      openstack-quantum-plumgrid < 2013.2-0.3.b3
386
387 Requires:       openstack-neutron = %{version}-%{release}
388
389
390 %description plumgrid
391 Neutron provides an API to dynamically request and configure virtual
392 networks.
393
394 This package contains the neutron plugin that implements virtual
395 networks using the PLUMgrid platform.
396
397
398 %package ryu
399 Summary:        Neutron Ryu plugin
400 Group:          Applications/System
401
402 Provides:       openstack-quantum-ryu = %{version}-%{release}
403 Obsoletes:      openstack-quantum-ryu < 2013.2-0.3.b3
404
405 Requires:       openstack-neutron = %{version}-%{release}
406
407
408 %description ryu
409 Neutron provides an API to dynamically request and configure virtual
410 networks.
411
412 This package contains the neutron plugin that implements virtual
413 networks using the Ryu Network Operating System.
414
415
416 %package nec
417 Summary:        Neutron NEC plugin
418 Group:          Applications/System
419
420 Provides:       openstack-quantum-nec = %{version}-%{release}
421 Obsoletes:      openstack-quantum-nec < 2013.2-0.3.b3
422
423 Requires:       openstack-neutron = %{version}-%{release}
424
425
426 %description nec
427 Neutron provides an API to dynamically request and configure virtual
428 networks.
429
430 This package contains the neutron plugin that implements virtual
431 networks using the NEC OpenFlow controller.
432
433
434 %package metaplugin
435 Summary:        Neutron meta plugin
436 Group:          Applications/System
437
438 Provides:       openstack-quantum-metaplugin = %{version}-%{release}
439 Obsoletes:      openstack-quantum-metaplugin < 2013.2-0.3.b3
440
441 Requires:       openstack-neutron = %{version}-%{release}
442
443
444 %description metaplugin
445 Neutron provides an API to dynamically request and configure virtual
446 networks.
447
448 This package contains the neutron plugin that implements virtual
449 networks using multiple other neutron plugins.
450
451
452 %package vmware
453 Summary:       Neutron VMWare NSX support
454 Group:         Applications/System
455
456 Requires:      openstack-neutron = %{version}-%{release}
457 Provides:      openstack-neutron-nicira = %{version}-%{release}
458 Obsoletes:     openstack-neutron-nicira < 2014.1-4
459
460 %description vmware
461 This package adds VMWare NSX support for neutron
462
463
464 %package metering-agent
465 Summary:        Neutron bandwidth metering agent
466 Group:          Applications/System
467
468 Requires:       openstack-neutron = %{version}-%{release}
469
470 %description metering-agent
471 Neutron provides an API to measure bandwidth utilization
472
473 This package contains the neutron agent responsible for generating bandwidth
474 utilization notifications.
475
476
477 %package vpn-agent
478 Summary:        Neutron VPNaaS agent
479 Group:          Applications/System
480
481 Requires:       openstack-neutron = %{version}-%{release}
482
483 %description vpn-agent
484 Neutron provides an API to implement VPN as a service
485
486 This package contains the neutron agent responsible for implenting VPNaaS with
487 IPSec.
488
489
490 %prep
491 %setup -q -n neutron-%{version}
492
493 %patch0001 -p1
494
495 find neutron -name \*.py -exec sed -i '/\/usr\/bin\/env python/{d;q}' {} +
496
497 # Ensure SOURCES.txt ends in a newline and if any patches have added files, append them to SOURCES.txt
498 [ -n "$(tail -c 1 < neutron.egg-info/SOURCES.txt)" ] && echo >> neutron.egg-info/SOURCES.txt
499 if ls %{_sourcedir}/*.patch >/dev/null 2>&1; then
500 awk '/^new file/ {split(a,files," ");print substr(files[3],3)} {a = $0}' %{_sourcedir}/*.patch >> neutron.egg-info/SOURCES.txt
501 fi
502
503 sed -i 's/RPMVERSION/%{version}/; s/RPMRELEASE/%{release}/' neutron/version.py
504
505 chmod 644 neutron/plugins/cisco/README
506
507 # Let's handle dependencies ourseleves
508 rm -f requirements.txt
509
510 %build
511 %{__python} setup.py build
512
513 # Loop through values in neutron-dist.conf and make sure that the values
514 # are substituted into the neutron.conf as comments. Some of these values
515 # will have been uncommented as a way of upstream setting defaults outside
516 # of the code. For service_provider and notification-driver, there are
517 # commented examples above uncommented settings, so this specifically
518 # skips those comments and instead comments out the actual settings and
519 # substitutes the correct default values.
520 while read name eq value; do
521   test "$name" && test "$value" || continue
522   if [ "$name" = "service_provider" -o "$name" = "notification_driver" ]; then
523     sed -ri "0,/^$name *=/{s!^$name *=.*!# $name = $value!}" etc/neutron.conf
524   else
525     sed -ri "0,/^(#)? *$name *=/{s!^(#)? *$name *=.*!# $name = $value!}" etc/neutron.conf
526   fi
527 done < %{SOURCE90}
528
529 %install
530 %{__python} setup.py install -O1 --skip-build --root %{buildroot}
531
532 # Remove unused files
533 rm -rf %{buildroot}%{python_sitelib}/bin
534 rm -rf %{buildroot}%{python_sitelib}/doc
535 rm -rf %{buildroot}%{python_sitelib}/tools
536 rm -rf %{buildroot}%{python_sitelib}/neutron/tests
537 rm -rf %{buildroot}%{python_sitelib}/neutron/plugins/*/tests
538 rm -f %{buildroot}%{python_sitelib}/neutron/plugins/*/run_tests.*
539 rm %{buildroot}/usr/etc/init.d/neutron-server
540
541 # Move rootwrap files to proper location
542 install -d -m 755 %{buildroot}%{_datarootdir}/neutron/rootwrap
543 mv %{buildroot}/usr/etc/neutron/rootwrap.d/*.filters %{buildroot}%{_datarootdir}/neutron/rootwrap
544
545 # Move config files to proper location
546 install -d -m 755 %{buildroot}%{_sysconfdir}/neutron
547 mv %{buildroot}/usr/etc/neutron/* %{buildroot}%{_sysconfdir}/neutron
548 mv %{buildroot}%{_sysconfdir}/neutron/api-paste.ini %{buildroot}%{_datadir}/neutron/api-paste.ini
549 chmod 640  %{buildroot}%{_sysconfdir}/neutron/plugins/*/*.ini
550
551 # TODO: remove this once the plugin is separately packaged
552 rm %{buildroot}%{_sysconfdir}/neutron/plugins/embrane/heleos_conf.ini
553
554 # Install logrotate
555 install -p -D -m 644 %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/openstack-neutron
556
557 # Install sudoers
558 install -p -D -m 440 %{SOURCE2} %{buildroot}%{_sysconfdir}/sudoers.d/neutron
559
560 # Install sysv init scripts
561 install -p -D -m 755 %{SOURCE10} %{buildroot}%{_initrddir}/neutron-server
562 install -p -D -m 755 %{SOURCE11} %{buildroot}%{_initrddir}/neutron-linuxbridge-agent
563 install -p -D -m 755 %{SOURCE12} %{buildroot}%{_initrddir}/neutron-openvswitch-agent
564 install -p -D -m 755 %{SOURCE13} %{buildroot}%{_initrddir}/neutron-ryu-agent
565 install -p -D -m 755 %{SOURCE14} %{buildroot}%{_initrddir}/neutron-nec-agent
566 install -p -D -m 755 %{SOURCE15} %{buildroot}%{_initrddir}/neutron-dhcp-agent
567 install -p -D -m 755 %{SOURCE16} %{buildroot}%{_initrddir}/neutron-l3-agent
568 install -p -D -m 755 %{SOURCE17} %{buildroot}%{_initrddir}/neutron-metadata-agent
569 install -p -D -m 755 %{SOURCE18} %{buildroot}%{_initrddir}/neutron-ovs-cleanup
570 install -p -D -m 755 %{SOURCE19} %{buildroot}%{_initrddir}/neutron-lbaas-agent
571 install -p -D -m 755 %{SOURCE30} %{buildroot}%{_initrddir}/neutron-mlnx-agent
572 install -p -D -m 755 %{SOURCE31} %{buildroot}%{_initrddir}/neutron-vpn-agent
573 install -p -D -m 755 %{SOURCE32} %{buildroot}%{_initrddir}/neutron-metering-agent
574
575 # Setup directories
576 install -d -m 755 %{buildroot}%{_datadir}/neutron
577 install -d -m 755 %{buildroot}%{_sharedstatedir}/neutron
578 install -d -m 755 %{buildroot}%{_localstatedir}/log/neutron
579 install -d -m 755 %{buildroot}%{_localstatedir}/run/neutron
580
581 # Install upstart jobs examples
582 install -p -m 644 %{SOURCE20} %{buildroot}%{_datadir}/neutron/
583 install -p -m 644 %{SOURCE21} %{buildroot}%{_datadir}/neutron/
584 install -p -m 644 %{SOURCE22} %{buildroot}%{_datadir}/neutron/
585 install -p -m 644 %{SOURCE23} %{buildroot}%{_datadir}/neutron/
586 install -p -m 644 %{SOURCE24} %{buildroot}%{_datadir}/neutron/
587 install -p -m 644 %{SOURCE25} %{buildroot}%{_datadir}/neutron/
588 install -p -m 644 %{SOURCE26} %{buildroot}%{_datadir}/neutron/
589 install -p -m 644 %{SOURCE27} %{buildroot}%{_datadir}/neutron/
590 install -p -m 644 %{SOURCE28} %{buildroot}%{_datadir}/neutron/
591 install -p -m 644 %{SOURCE29} %{buildroot}%{_datadir}/neutron/
592 install -p -m 644 %{SOURCE40} %{buildroot}%{_datadir}/neutron/
593 install -p -m 644 %{SOURCE41} %{buildroot}%{_datadir}/neutron/
594 install -p -m 644 %{SOURCE42} %{buildroot}%{_datadir}/neutron/
595
596 # Install dist conf
597 install -p -D -m 640 %{SOURCE90} %{buildroot}%{_datadir}/neutron/neutron-dist.conf
598
599 # Install version info file
600 cat > %{buildroot}%{_sysconfdir}/neutron/release <<EOF
601 [Neutron]
602 vendor = Fedora Project
603 product = OpenStack Neutron
604 package = %{release}
605 EOF
606
607 %pre
608 getent group neutron >/dev/null || groupadd -r neutron
609 getent passwd neutron >/dev/null || \
610     useradd -r -g neutron -d %{_sharedstatedir}/neutron -s /sbin/nologin \
611     -c "OpenStack Neutron Daemons" neutron
612 exit 0
613
614
615 %post
616 if [ $1 -eq 1 ] ; then
617     # Initial installation
618     /sbin/chkconfig --add neutron-server
619     for agent in dhcp l3 metadata lbaas; do
620       /sbin/chkconfig --add neutron-$agent-agent
621     done
622 fi
623
624 %preun
625 if [ $1 -eq 0 ] ; then
626     # Package removal, not upgrade
627     /sbin/service neutron-server stop >/dev/null 2>&1
628     /sbin/chkconfig --del neutron-server
629     for agent in dhcp l3 metadata lbaas; do
630       /sbin/service neutron-$agent-agent stop >/dev/null 2>&1
631       /sbin/chkconfig --del neutron-$agent-agent
632     done
633 fi
634
635 %postun
636 if [ $1 -ge 1 ] ; then
637     # Package upgrade, not uninstall
638     /sbin/service neutron-server condrestart >/dev/null 2>&1 || :
639     for agent in dhcp l3 metadata lbaas; do
640       /sbin/service neutron-$agent-agent condrestart >/dev/null 2>&1 || :
641     done
642 fi
643
644 %pretrans
645 if rpm --quiet -q openstack-quantum; then
646     mkdir -p  %{_localstatedir}/lib/rpm-state/
647
648     # Create a script for restoring init script enabling that we can also
649     # use as a flag to detect quantum -> grizzly upgrades in %posttrans
650     chkconfig --type sysv --list|grep ^quantum| \
651       sed -re 's/[0-6]:off//g
652                s/([0-6]):on\s*/\1/g
653                s/quantum/neutron/g
654                s/^([a-z0-9-]+)\s+$/chkconfig \1 off/
655                s/^([a-z0-9-]+)\s+([0-6]+)/chkconfig --levels \2 \1 on/' > %{_localstatedir}/lib/rpm-state/UPGRADE_FROM_QUANTUM
656 fi
657
658 %posttrans
659 # Handle migration from quantum -> neutron
660 if [ -e %{_localstatedir}/lib/rpm-state/UPGRADE_FROM_QUANTUM ];then
661     # Migrate existing config files
662     for i in `find /etc/quantum -name *.rpmsave`;do
663         new=${i//quantum/neutron}
664         new=${new/%.rpmsave/}
665         sed -e '/^sql_connection/ b
666                 /^admin_user/ b
667                 s/quantum/neutron/g
668                 s/Quantum/Neutron/g' $i > $new
669     done
670
671     # Re-create plugin.ini if it existed.
672     if [ -h %{_sysconfdir}/quantum/plugin.ini ];then
673         plugin_ini=$(readlink %{_sysconfdir}/quantum/plugin.ini)
674         ln -s ${plugin_ini//quantum/neutron} %{_sysconfdir}/neutron/plugin.ini
675     fi
676
677     # Stamp the existing db as grizzly to avoid neutron-server breaking db migration
678     neutron-db-manage --config-file %{_sysconfdir}/neutron/neutron.conf --config-file %{_sysconfdir}/neutron/plugin.ini stamp grizzly || :
679
680     # Restore the enablement of the various neutron services
681     source %{_localstatedir}/lib/rpm-state/UPGRADE_FROM_QUANTUM
682
683     rm -f %{_localstatedir}/lib/rpm-state/UPGRADE_FROM_QUANTUM
684 fi
685
686
687 %post linuxbridge
688 if [ $1 -eq 1 ] ; then
689     # Initial installation
690     /sbin/chkconfig --add neutron-linuxbridge-agent
691 fi
692
693 %preun linuxbridge
694 if [ $1 -eq 0 ] ; then
695     # Package removal, not upgrade
696     /sbin/service neutron-linuxbridge-agent stop >/dev/null 2>&1
697     /sbin/chkconfig --del neutron-linuxbridge-agent
698 fi
699
700 %postun linuxbridge
701 if [ $1 -ge 1 ] ; then
702     # Package upgrade, not uninstall
703     /sbin/service neutron-linuxbridge-agent condrestart >/dev/null 2>&1 || :
704 fi
705
706
707 %post openvswitch
708 if [ $1 -eq 1 ] ; then
709     # Initial installation
710     /sbin/chkconfig --add neutron-openvswitch-agent
711 fi
712
713 %preun openvswitch
714 if [ $1 -eq 0 ] ; then
715     # Package removal, not upgrade
716     /sbin/service neutron-openvswitch-agent stop >/dev/null 2>&1
717     /sbin/chkconfig --del neutron-openvswitch-agent
718 fi
719
720 %postun openvswitch
721 if [ $1 -ge 1 ] ; then
722     # Package upgrade, not uninstall
723     /sbin/service neutron-openvswitch-agent condrestart >/dev/null 2>&1 || :
724 fi
725
726
727 %post ryu
728 if [ $1 -eq 1 ] ; then
729     # Initial installation
730     /sbin/chkconfig --add neutron-ryu-agent
731 fi
732
733 %preun ryu
734 if [ $1 -eq 0 ] ; then
735     # Package removal, not upgrade
736     /sbin/service neutron-ryu-agent stop >/dev/null 2>&1
737     /sbin/chkconfig --del neutron-ryu-agent
738 fi
739
740 %postun ryu
741 if [ $1 -ge 1 ] ; then
742     # Package upgrade, not uninstall
743     /sbin/service neutron-ryu-agent condrestart >/dev/null 2>&1 || :
744 fi
745
746
747 %post nec
748 if [ $1 -eq 1 ] ; then
749     # Initial installation
750     /sbin/chkconfig --add neutron-nec-agent
751 fi
752
753 %preun nec
754 if [ $1 -eq 0 ] ; then
755     # Package removal, not upgrade
756     /sbin/service neutron-nec-agent stop >/dev/null 2>&1
757     /sbin/chkconfig --del neutron-nec-agent
758 fi
759
760
761 %postun nec
762 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
763 if [ $1 -ge 1 ] ; then
764     # Package upgrade, not uninstall
765     /sbin/service neutron-nec-agent condrestart >/dev/null 2>&1 || :
766 fi
767
768
769 %post mellanox
770 if [ $1 -eq 1 ] ; then
771     # Initial installation
772     /sbin/chkconfig --add neutron-mlnx-agent
773 fi
774
775 %preun mellanox
776 if [ $1 -eq 0 ] ; then
777     # Package removal, not upgrade
778     /sbin/service neutron-mlnx-agent stop >/dev/null 2>&1
779     /sbin/chkconfig --del neutron-mlnx-agent
780 fi
781
782 %postun mellanox
783 if [ $1 -ge 1 ] ; then
784     # Package upgrade, not uninstall
785     /sbin/service neutron-mlnx-agent condrestart >/dev/null 2>&1 || :
786 fi
787
788
789 %post vpn-agent
790 if [ $1 -eq 1 ] ; then
791     # Initial installation
792     /sbin/chkconfig --add neutron-vpn-agent
793 fi
794
795 %preun vpn-agent
796 if [ $1 -eq 0 ] ; then
797     # Package removal, not upgrade
798     /sbin/service neutron-vpn-agent stop >/dev/null 2>&1
799     /sbin/chkconfig --del neutron-vpn-agent
800 fi
801
802 %postun vpn-agent
803 if [ $1 -ge 1 ] ; then
804     # Package upgrade, not uninstall
805     /sbin/service neutron-vpn-agent condrestart >/dev/null 2>&1 || :
806 fi
807
808
809 %post metering-agent
810 if [ $1 -eq 1 ] ; then
811     # Initial installation
812     /sbin/chkconfig --add neutron-metering-agent
813 fi
814
815 %preun metering-agent
816 if [ $1 -eq 0 ] ; then
817     # Package removal, not upgrade
818     /sbin/service neutron-metering-agent stop >/dev/null 2>&1
819     /sbin/chkconfig --del neutron-metering-agent
820 fi
821
822 %postun metering-agent
823 if [ $1 -ge 1 ] ; then
824     # Package upgrade, not uninstall
825     /sbin/service neutron-metering-agent condrestart >/dev/null 2>&1 || :
826 fi
827
828 %files
829 %doc LICENSE
830 %doc README.rst
831
832 %{_bindir}/neutron-cisco-cfg-agent
833 %{_bindir}/neutron-db-manage
834 %{_bindir}/neutron-debug
835 %{_bindir}/neutron-dhcp-agent
836 %{_bindir}/neutron-l3-agent
837 %{_bindir}/neutron-lbaas-agent
838 %{_bindir}/neutron-metadata-agent
839 %{_bindir}/neutron-netns-cleanup
840 %{_bindir}/neutron-ns-metadata-proxy
841 %{_bindir}/neutron-rootwrap
842 %{_bindir}/neutron-rootwrap-xen-dom0
843 %{_bindir}/neutron-sanity-check
844 %{_bindir}/neutron-server
845 %{_bindir}/neutron-usage-audit
846 %{_bindir}/neutron-sriov-nic-agent
847
848 %{_initrddir}/neutron-server
849 %{_initrddir}/neutron-dhcp-agent
850 %{_initrddir}/neutron-l3-agent
851 %{_initrddir}/neutron-metadata-agent
852 %{_initrddir}/neutron-ovs-cleanup
853 %{_initrddir}/neutron-lbaas-agent
854 %dir %{_datadir}/neutron
855 %{_datadir}/neutron/neutron-server.upstart
856 %{_datadir}/neutron/neutron-dhcp-agent.upstart
857 %{_datadir}/neutron/neutron-metadata-agent.upstart
858 %{_datadir}/neutron/neutron-l3-agent.upstart
859 %{_datadir}/neutron/neutron-lbaas-agent.upstart
860 %dir %{_sysconfdir}/neutron
861 %{_sysconfdir}/neutron/release
862 %attr(-, root, neutron) %{_datadir}/neutron/neutron-dist.conf
863 %attr(-, root, neutron) %{_datadir}/neutron/api-paste.ini
864 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/dhcp_agent.ini
865 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/fwaas_driver.ini
866 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/l3_agent.ini
867 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/metadata_agent.ini
868 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/lbaas_agent.ini
869 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/policy.json
870 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/neutron.conf
871 %config(noreplace) %{_sysconfdir}/neutron/rootwrap.conf
872 %dir %{_sysconfdir}/neutron/plugins
873 %config(noreplace) %{_sysconfdir}/logrotate.d/*
874 %config(noreplace) %{_sysconfdir}/sudoers.d/neutron
875 %dir %attr(0755, neutron, neutron) %{_sharedstatedir}/neutron
876 %dir %attr(0755, neutron, neutron) %{_localstatedir}/log/neutron
877 %dir %attr(0755, neutron, neutron) %{_localstatedir}/run/neutron
878 %dir %{_datarootdir}/neutron/rootwrap
879 %{_datarootdir}/neutron/rootwrap/debug.filters
880 %{_datarootdir}/neutron/rootwrap/dhcp.filters
881 %{_datarootdir}/neutron/rootwrap/ipset-firewall.filters
882 %{_datarootdir}/neutron/rootwrap/iptables-firewall.filters
883 %{_datarootdir}/neutron/rootwrap/l3.filters
884 %{_datarootdir}/neutron/rootwrap/lbaas-haproxy.filters
885
886
887 %files -n python-neutron
888 %doc LICENSE
889 %doc README.rst
890 %{python_sitelib}/neutron
891 %exclude %{python_sitelib}/neutron/plugins/bigswitch
892 %exclude %{python_sitelib}/neutron/plugins/brocade
893 %exclude %{python_sitelib}/neutron/plugins/cisco
894 %exclude %{python_sitelib}/neutron/plugins/hyperv
895 %exclude %{python_sitelib}/neutron/plugins/ibm
896 %exclude %{python_sitelib}/neutron/plugins/linuxbridge
897 %exclude %{python_sitelib}/neutron/plugins/metaplugin
898 %exclude %{python_sitelib}/neutron/plugins/midonet
899 %exclude %{python_sitelib}/neutron/plugins/ml2
900 %exclude %{python_sitelib}/neutron/plugins/mlnx
901 %exclude %{python_sitelib}/neutron/plugins/nuage
902 %exclude %{python_sitelib}/neutron/plugins/nec
903 %exclude %{python_sitelib}/neutron/plugins/ofagent
904 %exclude %{python_sitelib}/neutron/plugins/oneconvergence
905 %exclude %{python_sitelib}/neutron/plugins/openvswitch
906 %exclude %{python_sitelib}/neutron/plugins/plumgrid
907 %exclude %{python_sitelib}/neutron/plugins/ryu
908 %exclude %{python_sitelib}/neutron/plugins/vmware
909 %{python_sitelib}/neutron-%%{version}*.egg-info
910
911
912 %files bigswitch
913 %doc LICENSE
914 %{_bindir}/neutron-restproxy-agent
915 %{python_sitelib}/neutron/plugins/bigswitch
916 %dir %{_sysconfdir}/neutron/plugins/bigswitch
917 %dir %{_sysconfdir}/neutron/plugins/bigswitch/ssl/ca_certs
918 %dir %{_sysconfdir}/neutron/plugins/bigswitch/ssl/host_certs
919 %doc %{_sysconfdir}/neutron/plugins/bigswitch/ssl/ca_certs/README
920 %doc %{_sysconfdir}/neutron/plugins/bigswitch/ssl/host_certs/README
921 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/bigswitch/*.ini
922
923
924 %files brocade
925 %doc LICENSE
926 %doc neutron/plugins/brocade/README.md
927 %{python_sitelib}/neutron/plugins/brocade
928 %dir %{_sysconfdir}/neutron/plugins/brocade
929 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/brocade/*.ini
930
931
932 %files cisco
933 %doc LICENSE
934 %doc neutron/plugins/cisco/README
935 %{python_sitelib}/neutron/plugins/cisco
936 %dir %{_sysconfdir}/neutron/plugins/cisco
937 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/cisco/*.ini
938
939
940 %files hyperv
941 %doc LICENSE
942 #%%doc neutron/plugins/hyperv/README
943 %{_bindir}/neutron-hyperv-agent
944 %{python_sitelib}/neutron/plugins/hyperv
945 %dir %{_sysconfdir}/neutron/plugins/hyperv
946 %exclude %{python_sitelib}/neutron/plugins/hyperv/agent
947 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/hyperv/*.ini
948
949
950 %files ibm
951 %doc LICENSE
952 %{_bindir}/neutron-ibm-agent
953 #%{_bindir}/quantum-ibm-agent
954 %doc neutron/plugins/ibm/README
955 %{python_sitelib}/neutron/plugins/ibm
956 %dir %{_sysconfdir}/neutron/plugins/ibm
957 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/ibm/*.ini
958
959
960 %files linuxbridge
961 %doc LICENSE
962 %doc neutron/plugins/linuxbridge/README
963 %{_bindir}/neutron-linuxbridge-agent
964 #%{_bindir}/quantum-linuxbridge-agent
965 %{_initrddir}/neutron-linuxbridge-agent
966 %{_datadir}/neutron/neutron-linuxbridge-agent.upstart
967 %{python_sitelib}/neutron/plugins/linuxbridge
968 %{_datarootdir}/neutron/rootwrap/linuxbridge-plugin.filters
969 %dir %{_sysconfdir}/neutron/plugins/linuxbridge
970 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/linuxbridge/*.ini
971
972
973 %files midonet
974 %doc LICENSE
975 #%%doc neutron/plugins/midonet/README
976 %{python_sitelib}/neutron/plugins/midonet
977 %dir %{_sysconfdir}/neutron/plugins/midonet
978 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/midonet/*.ini
979
980
981 %files ml2
982 %doc neutron/plugins/ml2/README
983 %{python_sitelib}/neutron/plugins/ml2
984 %dir %{_sysconfdir}/neutron/plugins/ml2
985 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/ml2/*.ini
986
987
988 %files mellanox
989 %doc neutron/plugins/mlnx/README
990 %{_bindir}/neutron-mlnx-agent
991 #%{_bindir}/quantum-mlnx-agent
992 %{python_sitelib}/neutron/plugins/mlnx
993 %{_initrddir}/neutron-mlnx-agent
994 %{_datadir}/neutron/neutron-mlnx-agent.upstart
995 %dir %{_sysconfdir}/neutron/plugins/mlnx
996 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/mlnx/*.ini
997
998 %files nuage
999 %doc LICENSE
1000 %{python_sitelib}/neutron/plugins/nuage
1001 %dir %{_sysconfdir}/neutron/plugins/nuage
1002 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/nuage/*.ini
1003
1004 %files ofagent
1005 %doc neutron/plugins/ofagent/README
1006 %{_bindir}/neutron-ofagent-agent
1007 %{python_sitelib}/neutron/plugins/ofagent
1008
1009
1010 %files oneconvergence-nvsd
1011 %doc LICENSE
1012 %doc neutron/plugins/oneconvergence/README
1013 %dir %{_sysconfdir}/neutron/plugins/oneconvergence
1014 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/oneconvergence/nvsdplugin.ini
1015 %{_bindir}/neutron-nvsd-agent
1016 #%{_bindir}/quantum-nvsd-agent
1017 %{python_sitelib}/neutron/plugins/oneconvergence
1018
1019 %files opencontrail
1020 %dir %{_sysconfdir}/neutron/plugins/opencontrail
1021 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/opencontrail/*.ini
1022
1023 %files openvswitch
1024 %doc LICENSE
1025 %doc neutron/plugins/openvswitch/README
1026 %{_bindir}/neutron-openvswitch-agent
1027 %{_bindir}/neutron-ovs-cleanup
1028 #%{_bindir}/quantum-ovs-cleanup
1029 %{_initrddir}/neutron-openvswitch-agent
1030 %{_datadir}/neutron/neutron-openvswitch-agent.upstart
1031 %{_initrddir}/neutron-ovs-cleanup
1032 %{_datadir}/neutron/neutron-ovs-cleanup.upstart
1033 %{python_sitelib}/neutron/plugins/openvswitch
1034 %{_datarootdir}/neutron/rootwrap/openvswitch-plugin.filters
1035 %dir %{_sysconfdir}/neutron/plugins/openvswitch
1036 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/openvswitch/*.ini
1037
1038
1039 %files plumgrid
1040 %doc LICENSE
1041 %doc neutron/plugins/plumgrid/README
1042 %{python_sitelib}/neutron/plugins/plumgrid
1043 %dir %{_sysconfdir}/neutron/plugins/plumgrid
1044 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/plumgrid/*.ini
1045
1046
1047 %files ryu
1048 %doc LICENSE
1049 %doc neutron/plugins/ryu/README
1050 %{_bindir}/neutron-ryu-agent
1051 #%{_bindir}/quantum-ryu-agent
1052 %{_initrddir}/neutron-ryu-agent
1053 %{_datadir}/neutron/neutron-ryu-agent.upstart
1054 %{python_sitelib}/neutron/plugins/ryu
1055 %{_datarootdir}/neutron/rootwrap/ryu-plugin.filters
1056 %dir %{_sysconfdir}/neutron/plugins/ryu
1057 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/ryu/*.ini
1058
1059
1060 %files nec
1061 %doc LICENSE
1062 %doc neutron/plugins/nec/README
1063 %{_bindir}/neutron-nec-agent
1064 #%{_bindir}/quantum-nec-agent
1065 %{_initrddir}/neutron-nec-agent
1066 %{_datadir}/neutron/neutron-nec-agent.upstart
1067 %{python_sitelib}/neutron/plugins/nec
1068 %{_datarootdir}/neutron/rootwrap/nec-plugin.filters
1069 %dir %{_sysconfdir}/neutron/plugins/nec
1070 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/nec/*.ini
1071
1072
1073 %files metaplugin
1074 %doc LICENSE
1075 %doc neutron/plugins/metaplugin/README
1076 %{python_sitelib}/neutron/plugins/metaplugin
1077 %dir %{_sysconfdir}/neutron/plugins/metaplugin
1078 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/metaplugin/*.ini
1079
1080
1081 %files metering-agent
1082 %doc LICENSE
1083 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/metering_agent.ini
1084 %{_initrddir}/neutron-metering-agent
1085 %{_datadir}/neutron/neutron-metering-agent.upstart
1086 %{_bindir}/neutron-metering-agent
1087
1088
1089 %files vmware
1090 %doc LICENSE
1091 %{_bindir}/neutron-check-nsx-config
1092 %{_bindir}/neutron-nsx-manage
1093 %{python_sitelib}/neutron/plugins/vmware
1094 %dir %{_sysconfdir}/neutron/plugins/vmware
1095 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/plugins/vmware/*.ini
1096
1097
1098
1099 %files vpn-agent
1100 %doc LICENSE
1101 %config(noreplace) %attr(0640, root, neutron) %{_sysconfdir}/neutron/vpn_agent.ini
1102 %{_initrddir}/neutron-vpn-agent
1103 %{_datadir}/neutron/neutron-vpn-agent.upstart
1104 %{_bindir}/neutron-vpn-agent
1105 %{_datarootdir}/neutron/rootwrap/vpnaas.filters
1106
1107
1108 %changelog
1109 * Tue Aug 19 2014 Jenkins <jenkins@review.openstack.org> - 2014.2.b2-fuel5.1.mira0
1110 - 921969d Merge "Remove INACTIVE status from FWaaS"
1111 - 0954a7a Merge "Skip FWaaS config mismatch check if RPC method is unsupported"
1112 - 06254d8 Merge "Replace nullable from primary keys in tz_network_bindings with default"
1113 - f907677 Merge "Implement namespace cleanup for new DVR namespaces"
1114 - e87f003 Merge "Cisco N1kv plugin to send subtype on network profile creation"
1115 - 1c79667 Merge "Imported Translations from Transifex"
1116 - 02f637b Merge "Do not assume order of new_peers list elements"
1117 - ac6e919 Imported Translations from Transifex
1118 - 7384726 Merge "Option to remove routers from dead l3 agents"
1119 - 9bf0e66 Remove auto-generation of db schema from models at startup
1120 - e6ffc08 Cisco N1kv plugin to send subtype on network profile creation
1121 - 0852937 Merge "correct getLoggers to use __name__ in code"
1122 - 163e8ed Implement namespace cleanup for new DVR namespaces
1123 - 2d6a8c5 Merge "Opencontrail plug-in implementation for core resources"
1124 - 2738c70 Merge "Updated from global requirements"
1125 - 0ae82b6 Merge "Fix duplicate function: test_getattr_unallowed_attr"
1126 - 2de862e correct getLoggers to use __name__ in code
1127 - ca00b17 Skip FWaaS config mismatch check if RPC method is unsupported
1128 - 4bc2dfe Merge "Fix PortNotFound error during update_device_up for DVR"
1129 - 1694d24 Merge "Define some abstract methods in VpnDriver class"
1130 - f9069e1 Merge "Fixing neutron-db-manage with some options other than upgrade/downgrade"
1131 - 42df056 Merge "NSX: lift restriction on DVR update"
1132 - 9fc8b6c NSX: lift restriction on DVR update
1133 - b5b89bb Updated from global requirements
1134 - f9981d0 Merge "Preserve link local IP allocations for DVR fip ns across restart"
1135 - 0726bdd Merge "l2pop: get_agent_ports: Don't yield (None, {})"
1136 - eae5f5d Merge "ML2: Make get_device_details report mac address as well"
1137 - 905c278 Merge "Fix session's InvalidRequestError because of nested rollback"
1138 - bdd4a7c Merge "Predictable field and filter ordering"
1139 - 43b6efd Merge "Use jsonutils instead of stdlib json"
1140 - 0a75865 Use jsonutils instead of stdlib json
1141 - 83a88b0 Merge "Remove SELECT FOR UPDATE use in ML2 tunnel driver add_endpoint"
1142 - 8b89667 Merge "Fix interface add for dvr with gateway"
1143 - 9978423 Merge "Delete DVR namespaces on node after removing last VM"
1144 - 842d288 Merge "VPNaaS: Cisco fix validation for GW IP"
1145 - 7d94a40 Merge "Remove ignored do_request timeout argument"
1146 - c3760e5 Remove INACTIVE status from FWaaS
1147 - e10ebc2 Merge "Fix KeyError during sync_routers"
1148 - dbffb98 Merge "Fix PortNotFound exception during sync_routers"
1149 - 11ca12d Fix interface add for dvr with gateway
1150 - 0125cf7 l2pop: get_agent_ports: Don't yield (None, {})
1151 - b5a2da7 ML2: Make get_device_details report mac address as well
1152 - d10a909 Merge "Imported Translations from Transifex"
1153 - 09c22e5 Merge "Fix 404 error fetching metadata when using DVR"
1154 - 69ce923 Delete DVR namespaces on node after removing last VM
1155 - b025ccf Fix PortNotFound error during update_device_up for DVR
1156 - ce2d3ff Merge "add auth token to context"
1157 - 9677cf8 Option to remove routers from dead l3 agents
1158 - bc49650 Remove SELECT FOR UPDATE use in ML2 tunnel driver add_endpoint
1159 - aee5344 Fix KeyError during sync_routers
1160 - 2affc39 Fix PortNotFound exception during sync_routers
1161 - 7370b3d VPNaaS: Cisco fix validation for GW IP
1162 - 76dd028 Merge "NSX: unify the two distributed routing extensions"
1163 - e2c7249 Merge "Remove unneeded device_owner field from l2pop tuple"
1164 - a381d1b Imported Translations from Transifex
1165 - 754b1dd Fix duplicate function: test_getattr_unallowed_attr
1166 - 40a4c36 Merge "NSX: fix wording for configuration option"
1167 - 6e8cbf8 Merge "Raise exception for network delete with subnets presents"
1168 - 34f411d Merge "Make plugin and l3plugin available as mixin's properties"
1169 - f739614 Merge "Return port context from _bind_port_if_needed"
1170 - ec9435a Merge "MLNX Agent: ensure removed ports get treated on resyncs"
1171 - c3c9f58 Preserve link local IP allocations for DVR fip ns across restart
1172 - 338171c Fix 404 error fetching metadata when using DVR
1173 - 89fb8b6 Raise exception for network delete with subnets presents
1174 - 71fe4a6 Merge "Add delete operations for the ODL MechanismDriver"
1175 - 1a1561f Opencontrail plug-in implementation for core resources
1176 - c353a26 Do not assume order of new_peers list elements
1177 - 4b3547c Merge "Fixes an issue with FIP re-association"
1178 - fe49457 Make plugin and l3plugin available as mixin's properties
1179 - 0e2b280 Merge "MLNX Agent: Process port_update notifications in the main agent loop"
1180 - 82b5e32 Merge "Implement Midonet Juno Network Api calls"
1181 - f9c285f add auth token to context
1182 - 7205ea5 Fixes an issue with FIP re-association
1183 - 45e8eaa NSX: unify the two distributed routing extensions
1184 - 0ac15ad NSX: fix wording for configuration option
1185 - bdf47d1 Merge "Remove duplicated check for router connect to external net"
1186 - 598e14c MLNX Agent: ensure removed ports get treated on resyncs
1187 - c1ed203 Add delete operations for the ODL MechanismDriver
1188 - 18a10fa Merge "ofagent: Upgrade note about firewall_driver"
1189 - f103ce4 Predictable field and filter ordering
1190 - 01b2eed Fixing neutron-db-manage with some options other than upgrade/downgrade
1191 - 8e7120f Merge "Enabled Cisco ML2 driver to use new upstream ncclient"
1192 - 8be69e1 Removes extra indents from TestSubresourcePlugin
1193 - 4aaa3de ofagent: Upgrade note about firewall_driver
1194 - 0392029 Return port context from _bind_port_if_needed
1195 - 055fff5 Merge "ofagent: Update a comment in port_bound"
1196 - fa5eb30 MLNX Agent: Process port_update notifications in the main agent loop
1197 - ec4f861 Merge "Proper validation for inserting firewall rule"
1198 - b4eaa05 Fix session's InvalidRequestError because of nested rollback
1199 - 4d92aa0 Merge "ofagent: Remove network_delete method"
1200 - c5fafcb Remove unneeded device_owner field from l2pop tuple
1201 - fbf93bf Merge "Fix to throw correct error code for bad attribute"
1202 - afe9097 ofagent: Remove network_delete method
1203 - fccb7f7 Merge "ofagent: Add a missing normalized_port_name"
1204 - ec3f176 Merge "l3_db: refactor L3_NAT_DB_mixin"
1205 - afbab35 Merge "test_l3_plugin: L3AgentDbInteTestCase L3AgentDbSepTestCase fails"
1206 - 4979341 Merge "Improve external gateway update handling"
1207 - 6b8a5f0 Fix to throw correct error code for bad attribute
1208 - a3022cf Merge "Return 403 instead of 404 on attr policy failures"
1209 - aedc358 Merge "Do not assume order of pci slot list"
1210 - 2724b30 Merge "Fix to enable L2pop to serve DVR"
1211 - 596908f Improve external gateway update handling
1212 - b0f68bb Do not assume order of pci slot list
1213 - be81901 DeferredBridge to allow add_tunnel_port passthru
1214 - cada146 Merge "Move from Python logging to Openstack logging"
1215 - 74c99fb Enabled Cisco ML2 driver to use new upstream ncclient
1216 - dc65827 Fix to enable L2pop to serve DVR
1217 - 03c4dc3 Remove duplicated check for router connect to external net
1218 - d8c7025 Merge "Simple refactor to stop passing around an unused parameter"
1219 - de5fa0d ofagent: Add a missing normalized_port_name
1220 - cfea218 Return 403 instead of 404 on attr policy failures
1221 - c86b1f7 Proper validation for inserting firewall rule
1222 - 1d8afc7 Merge "Imported Translations from Transifex"
1223 - 6087c29 Merge "Fix 500 error  during router-update for dvr routers"
1224 - 8688acd Merge "Make _build_uri_path output predictable"
1225 - 2c404c3 Imported Translations from Transifex
1226 - cadc8df Merge "OVS flows apply concurrently using a deferred OVSBridge"
1227 - ebecca0 Merge "Exit Firewall Agent if config is invalid"
1228 - f217cc9 Merge "Move Cisco VPN RESTapi URI strings to constants"
1229 - c5e186f Fix 500 error  during router-update for dvr routers
1230 - d2291d6 Simple refactor to stop passing around an unused parameter
1231 - ce567d7 Make _build_uri_path output predictable
1232 - c417c63 Merge "Radware: When a pip is needed, reuse the Port"
1233 - 1633bc9 Merge "Remove redundant topic from rpc calls"
1234 - 77bc90c Merge "Big Switch: Only update hash header on success"
1235 - a576517 Radware: When a pip is needed, reuse the Port
1236 - 02db851 Merge "ofagent: Stop monitoring ovsdb for port changes"
1237 - 7021f12 Remove redundant topic from rpc calls
1238 - 98e65ca Merge "NSX: remove duplicate call to set_auth_cookie()"
1239 - e9ed3d0 Merge "Do not assume order of network_uuid's"
1240 - 5ec2f9e Merge "Make sure that gateway is in CIDR range by default"
1241 - 748f0d5 l3_db: refactor L3_NAT_DB_mixin
1242 - 990d596 OVS flows apply concurrently using a deferred OVSBridge
1243 - 6bd6deb Merge "ofagent: Desupport ancillary bridges"
1244 - eef7938 Merge "Add a tox test environment for random hashseed testing"
1245 - 31783e2 Do not assume order of network_uuid's
1246 - 1e7c2c6 Merge "Updated from global requirements"
1247 - acaa134 Merge "Do not assume order of quotas dictionary elements"
1248 - b8cf452 Big Switch: Only update hash header on success
1249 - f151cae ofagent: Stop monitoring ovsdb for port changes
1250 - 5a63085 ofagent: Desupport ancillary bridges
1251 - 5db7c77 Add a tox test environment for random hashseed testing
1252 - 9652d2e OFAgent: Implement arp responder
1253 - 32630d9 Updated from global requirements
1254 - 8307be7 Merge "NSX: Correct default timeout params"
1255 - 5c93dfa Do not assume order of quotas dictionary elements
1256 - ba87499 Move Cisco VPN RESTapi URI strings to constants
1257 - a566fb7 Merge "Fix spelling in get_plugin_interface docstring"
1258 - 7a56aa6 Merge "Fix spelling mistakes"
1259 - 70f7524 Merge "Imported Translations from Transifex"
1260 - db053e7 Remove ignored do_request timeout argument
1261 - a1b17e4 Merge "Fix DB Duplicate error when scheduling distributed routers"
1262 - 1a0be0e Move from Python logging to Openstack logging
1263 - a5cdc39 Imported Translations from Transifex
1264 - 9d677ce Merge "Removed configobj from test requirements"
1265 - 8a294eb Merge "Remove reference to cisco_cfg_agent.ini from setup.cfg"
1266 - c162624 Merge "Make ML2 ensure_dvr_port_binding more robust"
1267 - 87725d2 Merge "centralized router is incorrectly scheduled"
1268 - 81efeaa NSX: remove duplicate call to set_auth_cookie()
1269 - 0b7a768 NSX: Correct default timeout params
1270 - 091f023 Merge "Fix enums usage for postgres in migrations"
1271 - c669860 Merge "Audited attribute for policy update not changing"
1272 - 9a08deb Merge "Use correct section for log message if interface_driver import fails"
1273 - ed02ca5 Merge "Allow unsharing a network used as gateway/floatingip"
1274 - a71fb34 Remove reference to cisco_cfg_agent.ini from setup.cfg
1275 - 03e0989 Merge "Fix-DVR Gateway clear doesn't delete csnat port"
1276 - 3ee8957 Merge "Imported Translations from Transifex"
1277 - d6f014d Exit Firewall Agent if config is invalid
1278 - 1cbb3b6 Merge "Use storage engine when creating tables in migrations"
1279 - e5949d1 Merge "Configuration agent for Cisco devices"
1280 - 598accd Fix spelling mistakes
1281 - 0b4e42f Fix DB Duplicate error when scheduling distributed routers
1282 - 2842a27 Imported Translations from Transifex
1283 - 0b30651 Make ML2 ensure_dvr_port_binding more robust
1284 - b844085 centralized router is incorrectly scheduled
1285 - 86a0ade Fix-DVR Gateway clear doesn't delete csnat port
1286 - 045a1fc Fix spelling in get_plugin_interface docstring
1287 - 466e899 Use storage engine when creating tables in migrations
1288 - 207f1b4 Removed configobj from test requirements
1289 - 32af49e Implement Midonet Juno Network Api calls
1290 - f32c0eb Merge "Add missing ml2 plugin to migration 1fcfc149aca4"
1291 - 4ab8740 Merge "Do not schedule network when creating reserved DHCP port"
1292 - c6dfda2 Merge "Move ARP responder test to sanity command"
1293 - 56607c3 Merge "Add L3 Scheduler Changes for Distributed Routers"
1294 - 596aa4f Merge "Fix ML2 Plugin binding:profile update"
1295 - 30f1a75 Add missing ml2 plugin to migration 1fcfc149aca4
1296 - e416a54 Replace nullable from primary keys in tz_network_bindings with default
1297 - 25c5291 Use correct section for log message if interface_driver import fails
1298 - 0e44b7b Make sure that gateway is in CIDR range by default
1299 - 748d4fd test_l3_plugin: L3AgentDbInteTestCase L3AgentDbSepTestCase fails
1300 - 6a7bf84 Merge "Pass filters in arrays in get_agent_gw_ports_exist_for_network"
1301 - 461a910 Merge "Bump hacking to version 0.9.2"
1302 - 0411dc6 Merge "Make dvr_vmarp_table_update call conditional to dvr extension"
1303 - 0aa6147 Merge "Functional tests work fine with random PYTHONHASHSEED"
1304 - 8fd406c Merge "Replaced the strings with respective constants"
1305 - 12f037b Merge "Call config_parse in base test setup"
1306 - 8582b67 Merge "neutron.conf does not have the definition of firewall quotas"
1307 - 0b7e565 Add L3 Scheduler Changes for Distributed Routers
1308 - 5575f3b Merge "Race condition of L3-agent to add/remove routers"
1309 - 7a72917 Pass filters in arrays in get_agent_gw_ports_exist_for_network
1310 - a68d2c8 Merge "Check that router info is set before calling _update_arp_entry"
1311 - 57b97ed Merge "Fix deprecated opt in haproxy driver"
1312 - a43f74d Merge "Fix wrong order of tables in downgrade"
1313 - 56c84cd Do not schedule network when creating reserved DHCP port
1314 - a1d1347 Check that router info is set before calling _update_arp_entry
1315 - fff5505 Merge "Set nullable=False on tenant_id in apic_contracts table"
1316 - 43c1f98 Move ARP responder test to sanity command
1317 - 8417c62 neutron.conf does not have the definition of firewall quotas
1318 - bd40fbe Fix wrong order of tables in downgrade
1319 - cd3f4f7 Fix deprecated opt in haproxy driver
1320 - fbc6b99 Race condition of L3-agent to add/remove routers
1321 - 7e9fc14 Replaced the strings with respective constants
1322 - 3eee505 Make dvr_vmarp_table_update call conditional to dvr extension
1323 - 6b4da14 ofagent: Update a comment in port_bound
1324 - 30556c4 Merge "ML2 additions to support DVR"
1325 - bce9d24 Merge "Updated from global requirements"
1326 - a19e2d3 Merge "Changes to remove the use of mapping tables from Nuage plugin"
1327 - b31ee88 Updated from global requirements
1328 - 8820fef Merge "Set promote_secondaries when creating namespaces"
1329 - aa8cf7b Merge "Make test_l3_agent._prepare_router_data a module function"
1330 - f5d2602 Merge "Remove redundant code in tests/unit/test_l3_agent"
1331 - 141a00b Set promote_secondaries when creating namespaces
1332 - ffe34d3 Merge "Fixed audit notifications for dhcp-agent-network"
1333 - c83207e Functional tests work fine with random PYTHONHASHSEED
1334 - d98ca64 Call config_parse in base test setup
1335 - cd35b19 ML2 additions to support DVR
1336 - 889382b Make test_l3_agent._prepare_router_data a module function
1337 - 7657587 Remove redundant code in tests/unit/test_l3_agent
1338 - b750dce Merge "Cisco: Fix test cases which make incorrect create requests"
1339 - 409075e Merge "Avoid RequestURITooLong exception in metadata agent"
1340 - 5721066 Merge "Add definition for new VIF type"
1341 - cbaa3fe Fix ML2 Plugin binding:profile update
1342 - 505042d Merge "Set python hash seed to 0 in tox.ini"
1343 - 82557b8 Set python hash seed to 0 in tox.ini
1344 - 3f51d94 Merge "VPNaaS: Separate validation for Cisco impl"
1345 - 01f1508 Merge "Encapsulate some port properties in the PortContext"
1346 - 75d89c0 Add definition for new VIF type
1347 - 334aecc Configuration agent for Cisco devices
1348 - 0be575d Merge "update vsm credential correctly"
1349 - e7daa81 Merge "VMWare: don't notify on disassociate_floatingips()"
1350 - 4c22c8c Merge "sync periodic_task fix from incubator"
1351 - 5a27fdd Merge "Updated from global requirements"
1352 - 6bd147d Handle bool correctly during _extend_extra_router_dict
1353 - fdee780 Encapsulate some port properties in the PortContext
1354 - a2fff6e Merge "Add rule for updating network's router:external attribute"
1355 - d38194e Merge "ML2 mechanism driver for SR-IOV capable NIC based switching, Part 2"
1356 - 23fa27d Merge "Log methods using rpc communcation"
1357 - 49cdd82 Merge "Correct misspelled variable name"
1358 - 31d67cf Changes to remove the use of mapping tables from Nuage plugin
1359 - 6fa442b Updated from global requirements
1360 - 1af7d92 Merge "Move loadbalancer vip port creation outside of transaction"
1361 - 2abe915 Correct misspelled variable name
1362 - e85ff22 Avoid RequestURITooLong exception in metadata agent
1363 - 75735e9 Merge "OFAgent: Share codes of l2-population in OVS agent"
1364 - 2675091 Move loadbalancer vip port creation outside of transaction
1365 - baec346 Merge "ML2: Update a comment after the recent bind_port change"
1366 - 4471b81 Merge "Clear entries in Cisco N1KV specific tables on rollback"
1367 - ca8d71a Merge "call security_groups_member_updated in port_update"
1368 - abe8a4c Merge "Modify L3 Agent for Distributed Routers"
1369 - 3c59f7c Merge "Use method's logger in log decorator"
1370 - e15100d Merge "Missing max_routes in neutron.conf"
1371 - 0ea1453 Merge "Return a tuple of None's instead of one None"
1372 - 940d125 Define some abstract methods in VpnDriver class
1373 - b4b1db3 ML2 mechanism driver for SR-IOV capable NIC based switching, Part 2
1374 - 073aa81 Modify L3 Agent for Distributed Routers
1375 - 900ef2c Audited attribute for policy update not changing
1376 - 322fa88 OFAgent: Share codes of l2-population in OVS agent
1377 - dc44496 Add rule for updating network's router:external attribute
1378 - 6762aca Set nullable=False on tenant_id in apic_contracts table
1379 - e97eea8 call security_groups_member_updated in port_update
1380 - 045ae35 ML2: Update a comment after the recent bind_port change
1381 - c37b243 Fixed audit notifications for dhcp-agent-network
1382 - 355ff10 Fix enums usage for postgres in migrations
1383 - a84a8a5 Return a tuple of None's instead of one None
1384 - e71eda9 VPNaaS: Separate validation for Cisco impl
1385 - eafebec VMWare: don't notify on disassociate_floatingips()
1386 - 4f40c8f Bump hacking to version 0.9.2
1387 - 8a50e13 Log methods using rpc communcation
1388 - 487b98a update vsm credential correctly
1389 - 0540847 Use method's logger in log decorator
1390 - 72f6691 Cisco: Fix test cases which make incorrect create requests
1391 - 5e80775 Missing max_routes in neutron.conf
1392 - 73b4239 Clear entries in Cisco N1KV specific tables on rollback
1393 - 7a2053c Allow unsharing a network used as gateway/floatingip
1394 - cb06335 sync periodic_task fix from incubator
1395
1396 * Fri Jun 13 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1.1-1
1397 - Update to upstream 2014.1.1
1398 - Added previously missing ml2_conf_mlnx.ini, bz#1100136
1399
1400 * Wed Jun 11 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-21
1401 - Ensure routing key is specified in the address for a direct producer, bz#1108025
1402
1403 * Thu May 29 2014 Miguel Ángel Ajo <majopela@redhat.com> 2014.1-20
1404 - Add nuage plugin packaging as openstack-neutron-nuage
1405
1406 * Wed May 28 2014 Miguel Angel Ajo <majopela@redhat.com> 2014.1-19
1407 - Remove kernel version check for OVS VXLAN, not revelant for RDO
1408   bz#1081011
1409
1410 * Mon May 19 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-18
1411 - netaddr<=0.7.10 raises ValueError instead of AddrFormatError, bz#1090137
1412
1413 * Mon May 19 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-17
1414 - Validate CIDR given as ip-prefix in security-group-rule-create, bz#1090137
1415
1416 * Fri May 16 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-16
1417 - Fixed neutron-server startup due to duplicate options
1418
1419 * Thu May 15 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-15
1420 - Make neutron-vpn-agent read fwaas_driver.ini, bz#1098121
1421
1422 * Tue Apr 29 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-14
1423 - Removed signing_dir from neutron-dist.conf, again (bz#1050842)
1424
1425 * Wed Apr 23 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-13
1426 - Removed obsolete setup scripts
1427
1428 * Wed Apr 23 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-12
1429 - Removed signing_dir from neutron.conf
1430
1431 * Tue Apr 22 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-11
1432 - Pin python-novaclient dependency to >= 2.17.0
1433
1434 * Fri Apr 18 2014 Pádraig Brady <pbrady@redhat.com> - 2014.1-10
1435 - Remove uneeded dep on python-keystone
1436
1437 * Fri Apr 18 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-7
1438 - Require python-novaclient (used for Nova notifications)
1439
1440 * Fri Apr 18 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-6
1441 - We no longer specify notification_driver in neutron-dist.conf
1442
1443 * Fri Apr 18 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-5
1444 - Move api-paste.ini to /usr to make sure new values are applied on upgrade
1445
1446 * Fri Apr 18 2014 Terry Wilson <twilson@redhat.com> - 2014.1-4
1447 - Rename nicira plugin to vmware
1448
1449 * Fri Apr 18 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-3
1450 - Clean up neutron-dist.conf to reflect identical upstream defaults
1451
1452 * Fri Apr 18 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-2
1453 - Set use_stderr = False to avoid duplicate logging for stderr
1454
1455 * Fri Apr 18 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-1
1456 - Update to upstream 2014.1
1457
1458 * Tue Apr 15 2014 Miguel Ángel Ajo <majopela@redhat.com> -2014.1-0.19.rc2
1459 - Include the systemd readiness notification patch
1460
1461 * Tue Apr 15 2014 Pádraig Brady <pbrady@redhat.com> - 2014.1-0.18.rc2
1462 - Add missing dependency on python-oslo-rootwrap
1463
1464 * Fri Apr 11 2014 Miguel Angel Ajo <mangelajo@redhat.com> 2014.1-0.17.rc2
1465 - Update to upstream 2014.1.rc2
1466
1467 * Fri Apr 11 2014 Miguel Ángel Ajo <majopela@redhat.com> 2014.1-0.16.rc1
1468 - Use rabbitmq by default
1469
1470 * Thu Apr 10 2014 Miguel Ángel Ajo <majopela@redhat.com> 2014.1-0.15.rc1
1471 - Removes the python-pyudev dependency, bz#1053001
1472
1473 * Thu Apr 10 2014 Ihar Hrachyshka <ihrachys@redhat.com> 2014.1-0.14.rc1
1474 - Remove signing_dir from neutron-dist.conf, bz#1050842
1475
1476 * Fri Apr 04 2014 Pádraig Brady <pbrady@redhat.com> - 2014.1-0.13.rc1
1477 - Fix startup issue due to invalid group permissions, bz#1080560
1478 - Remove runtime dependency on python-pbr
1479
1480 * Wed Apr 02 2014 Terry Wilson <twilson@redhat.com> 2014.1-0.9.rc1
1481 - Update to upstream 2014.1.rc1
1482 - Remove python-psutil requires
1483
1484 * Wed Mar 19 2014 Miguel Ángel Ajo <majopela@redhat.com> - 2014.1.b3-8
1485 - Create agents table when ML2 core_plugin is used
1486  
1487 * Tue Mar 11 2014 Miguel Ángel Ajo <majopela@redhat.com> - 2014.1.b3-7
1488 - Fixed a broken dependency/typo lxaml -> lxml
1489 - Enforcing python-six >= 1.4.1 at least
1490
1491 * Fri Mar 07 2014 Miguel Ángel Ajo <majopela@redhat.com> - 2014.1.b3-6
1492 - Update to icehouse milestone 3
1493 - Add neutron-dhcp-agent dependency bz#1019487
1494 - Remove nicira plugin, renamed vmware-nsx to vmware bz#1058995
1495 - Add openstack-neutron-ibm plugin
1496 - Add openstack-neutron-ofagent plugin from ryu project
1497
1498 * Tue Feb 04 2014 Pádraig Brady <pbrady@redhat.com> - 2014.1.b2-5
1499 - Fix missing dependency on python-stevedore
1500
1501 * Tue Feb 04 2014 Pádraig Brady <pbrady@redhat.com> - 2014.1.b2-4
1502 - Fix exception on systems with dnsmasq < 2.59
1503
1504 * Mon Jan 27 2014 Terry Wilson <twilson@redhat.com> - 2014.1.b2-3
1505 - Update to icehouse milestone 2
1506
1507 * Tue Jan 07 2014 Terry Wilson <twilson@redhat.com> - 2014.1.b1-2
1508 - Add python-psutil requirement for openvswitch agent, bz#1049235
1509
1510 * Mon Dec 23 2013 Pádraig Brady <pbrady@redhat.com> - 2014.1.b1-1
1511 - Update to icehouse milestone 1
1512
1513 * Wed Dec 18 2013 Pádraig Brady <pbrady@redhat.com> - 2013.2.1-1
1514 - Update to Havana stable release 2013.2.1
1515
1516 * Fri Dec 13 2013 Terry Wilson <twilson@redhat.com> - 2013.2-13
1517 - QPID fixes from oslo-incubator, bz#1038711, bz#1038717
1518 - Remove dnsmasq version warning, bz#997961
1519 - Ensure that disabled services are properly handled on upgrade, bz#1040704
1520
1521 * Mon Dec 09 2013 Terry Wilson <twilson@redhat.com> - 2013.2-12
1522 - Add vpnaas/fwaas configs to init scripts, bz#1032450
1523 - Pass neutron rootwrap.conf in sudoers.d/neutron, bz#984097
1524
1525 * Wed Dec 04 2013 Terry Wilson <twilson@redhat.com> - 2013.2-11
1526 - Add missing debug and vpnaas rootwrap filters, bz#1034207
1527
1528 * Mon Dec 02 2013 Terry Wilson <twilson@redhat.com> - 2013.2-10
1529 - Replace quantum references in neutron-dist.conf
1530
1531 * Tue Nov 19 2013 Pádraig Brady <pbrady@redhat.com> - 2013.2-9
1532 - Fix dependency on parallel installed python-jinja2-26
1533
1534 * Tue Nov 19 2013 Pádraig Brady <pbrady@redhat.com> - 2013.2-8
1535 - Depend on python-webob1.2 rather than deprecated python-webob1.0
1536
1537 * Wed Nov 13 2013 Terry Wilson <twilson@redhat.com> - 2013.2-7
1538 - Add dnsmasq-utils dependency to openstack-neutron
1539
1540 * Wed Nov 13 2013 Pádraig Brady <pbrady@redhat.com> - 2013.2-6
1541 - Fix jinja2 import in openstack-neutron-vpn-agent
1542
1543 * Thu Nov 07 2013 Terry Wilson <twilson@redhat.com> - 2013.2-5
1544 - Update deps for python-{babel,keystoneclient,oslo-config}
1545
1546 * Wed Oct 30 2013 Terry Wilson <twilson@redaht.com> - 2013.2-4
1547 - Better support for upgrading from grizzly to havana
1548
1549 * Thu Oct 24 2013 Terry Wilson <twilson@redhat.com> - 2013.2-3
1550 - Fix previous neutron-ovs-cleanup fix
1551
1552 * Thu Oct 24 2013 Terry Wilson <twilson@redhat.com> - 2013.2-2
1553 - Ensure that neutron-ovs-cleanup completes before exiting (rhbz#1010941)
1554
1555 * Fri Oct 18 2013 Pádraig Brady <pbrady@redhat.com> - 2013.2-1
1556 - Update to havana GA
1557
1558 * Thu Oct 10 2013 Terry Wilson <twilson@redhat.com> - 2013.2-0.12.rc1
1559 - Update to havana rc1
1560
1561 * Wed Oct  2 2013 Terry Wilson <twilson@redhat.com> - 2013.2-0.11.b3
1562 - Add python-jinja2 requires to VPN agent
1563 - Ad missing services for VPN and metering agent
1564
1565 * Thu Sep 26 2013 Terry Wilson <twilson@redhat.com> - 2013.2-0.10.b3
1566 - Add support for neutron-dist.conf
1567
1568 * Tue Sep 17 2013 Pádraig Brady <pbrady@redhat.com> - 2013.2-0.9.b3
1569 - Fix typo in openstack-neutron-meetering-agent package name
1570 - Register all agent services with chkconfig during installation
1571
1572 * Mon Sep 09 2013 Terry Wilson <twilson@rehdat.com> - 2013.2-0.4.b3
1573 - Update to havana milestone 3 release
1574
1575 * Thu Jul 25 2013 Terry Wilson <twilson@redhat.com> - 2013.2-0.3.b2
1576 - Update to havana milestone 2 release
1577 - Rename quantum to neutron
1578
1579 * Mon Jun 17 2013 Terry Wilson <twilson@redhat.com> - 2013.2-0.2.b1
1580 - Update to havana milestone 1 release
1581
1582 * Fri Jun 07 2013 Terry Wilson <twilson@redhat.com> - 2013.1.2-1
1583 - Update to grizzly 2013.1.2 release
1584
1585 * Sun May 26 2013 Gary Kotton <gkotton@redhat.com> - 2013.1.1-6
1586 - Fixes rootwarp path
1587
1588 * Fri May 24 2013 Pádraig Brady <P@draigBrady.com> - 2013.1.1-5
1589 - Fix inclusion of db migrations
1590
1591 * Wed May 22 2013 Gary Kotton <gkotton@redhat.com> - 2013.1.1-3
1592 - Updates to work with namespaces
1593 - Fix kill-metadata rootwrap filter
1594
1595 * Mon May 13 2013 Gary Kotton <gkotton@redhat.com> - 2013.1.1-2
1596 - Update to grizzly stable release 2013.1.1
1597 - Update install scripts to configure security groups
1598 - Update install scripts to remove virtual interface configurations
1599
1600 * Mon Apr 29 2013 Pádraig Brady <pbrady@redhat.com> 2013.1-3
1601 - Fix quantum-ovs-cleanup.init to reference the correct config files
1602
1603 * Thu Apr  4 2013 Gary Kotton <gkotton@redhat.com> - 2013.1-1
1604 - Update to grizzly release
1605
1606 * Thu Apr  4 2013 Gary Kotton <gkotton@redhat.com> - 2013.1-0.7.rc3
1607 - Update to grizzly rc3
1608 - Update rootwrap (bug 947793)
1609 - Update l3-agent-setup to support qpid (bug 947532)
1610 - Update l3-agent-setup to support metadata-agent credentials
1611 - Update keystone authentication details (bug 947776)
1612
1613 * Tue Mar 26 2013 Terry Wilson <twilson@redhat.com> - 2013.1-0.6.rc2
1614 - Update to grizzly rc2
1615
1616 * Tue Mar 12 2013 Pádraig Brady <P@draigBrady.Com> - 2013.1-0.5.g3
1617 - Relax the dependency requirements on sqlalchemy
1618
1619 * Mon Feb 25 2013 Robert Kukura <rkukura@redhat.com> - 2013.1-0.4.g3
1620 - Update to grizzly milestone 3
1621 - Add brocade, hyperv, midonet, and plumgrid plugins as sub-packages
1622 - Remove cisco files that were eliminated
1623 - Add quantum-check-nvp-config
1624 - Include patch for https://code.launchpad.net/bugs/1132889
1625 - Require python-oslo-config
1626 - Require compatible version of python-sqlalchemy
1627 - Various spec file improvements
1628
1629 * Thu Feb 14 2013 Robert Kukura <rkukura@redhat.com> - 2013.1-0.3.g2
1630 - Update to grizzly milestone 2
1631 - Add quantum-db-manage, quantum-metadata-agent,
1632   quantum-ns-metadata-proxy, quantum-ovs-cleanup, and
1633   quantum-usage-audit executables
1634 - Add systemd units for quantum-metadata-agent and quantum-ovs-cleanup
1635 - Fix /etc/quantum/policy.json permissions (bug 877600)
1636 - Require dnsmasq (bug 890041)
1637 - Add the version info file
1638 - Remove python-lxml dependency
1639 - Add python-alembic dependency
1640
1641 * Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013.1-0.2.g1
1642 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1643
1644 * Wed Jan 23 2013 Martin Magr <mmagr@redhat.com> - 2012.2.1-1
1645 - Added python-keystone requirement
1646
1647 * Wed Dec  5 2012 Robert Kukura <rkukura@redhat.com> - 2013.1-0.1.g1
1648 - Update to grizzly milestone 1
1649 - Require python-quantumclient >= 1:2.1.10
1650 - Remove unneeded rpc control_exchange patch
1651 - Add bigswitch plugin as sub-package
1652 - Work around bigswitch conf file missing from setup.py
1653
1654 * Mon Dec  3 2012 Robert Kukura <rkukura@redhat.com> - 2012.2.1-1
1655 - Update to folsom stable 2012.2.1
1656 - Add upstream patch: Fix rpc control_exchange regression.
1657 - Remove workaround for missing l3_agent.ini
1658
1659 * Thu Nov 01 2012 Alan Pevec <apevec@redhat.com> 2012.2-2
1660 - l3_agent not disabling namespace use lp#1060559
1661
1662 * Fri Sep 28 2012 Robert Kukura <rkukura@redhat.com> - 2012.2-1
1663 - Update to folsom final
1664 - Require python-quantumclient >= 1:2.1.1
1665
1666 * Tue Aug 21 2012 Robert Kukura <rkukura@redhat.com> - 2012.1-8
1667 - fix database config generated by install scripts (#847785)
1668
1669 * Wed Jul 25 2012 Robert Kukura <rkukura@redhat.com> - 2012.1-6
1670 - Update to 20120715 essex stable branch snapshot
1671
1672 * Mon May 28 2012 Pádraig Brady <P@draigBrady.com> - 2012.1-5
1673 - Fix helper scripts to use the always available openstack-config util
1674
1675 * Mon May 07 2012 Pádraig Brady <P@draigBrady.com> - 2012.1-4
1676 - Fix handling of the mysql service in quantum-server-setup
1677
1678 * Tue May 01 2012 Pádraig Brady <P@draigBrady.com> - 2012.1-3
1679 - Start the services later in the boot sequence
1680
1681 * Wed Apr 25 2012 Pádraig Brady <P@draigBrady.com> - 2012.1-2
1682 - Use parallel installed versions of python-routes and python-paste-deploy
1683
1684 * Thu Apr 12 2012 Pádraig Brady <pbrady@redhat.com> - 2012.1-1
1685 - Initial essex release