f509ba21ce
Make sure that network namespaces are supported when installing neutron componented and use_namespaces option is enabled. Otherwise, raise install exception. Change-Id: I19e7e3276f99db685f3406c1924722255bf174f8
17 lines
441 B
Bash
Executable File
17 lines
441 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script is used to install 'kernel' and 'iproute'
|
|
# with network namespaces support for openstack-neutron
|
|
# from RDO havana repository.
|
|
|
|
set -e
|
|
|
|
echo "Adding RDO havana repo..."
|
|
sudo rpm -i --force http://rdo.fedorapeople.org/openstack-havana/rdo-release-havana.rpm
|
|
sudo yum clean all
|
|
|
|
echo "Installing 'kernel' and 'iproute' from RDO..."
|
|
sudo yum install -y kernel iproute
|
|
|
|
echo "Kernel updated. Please, reboot into it!"
|