You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
497 B
20 lines
497 B
#!/bin/bash |
|
|
|
set -eux |
|
|
|
yum install -y \ |
|
jq \ |
|
python-ipaddress \ |
|
puppet-tripleo \ |
|
os-net-config \ |
|
openvswitch \ |
|
python-heat-agent* \ |
|
openstack-selinux |
|
|
|
ln -s -f /usr/share/openstack-puppet/modules/* /etc/puppet/modules |
|
|
|
setenforce 0 |
|
sed -i 's/^SELINUX=.*/SELINUX=permissive/' /etc/selinux/config |
|
|
|
echo '# empty ruleset created by deployed-server bootstrap' > /etc/sysconfig/iptables |
|
echo '# empty ruleset created by deployed-server bootstrap' > /etc/sysconfig/ip6tables
|
|
|