summaryrefslogtreecommitdiff
path: root/openstack-nova.configure
blob: 4655342c8a41e5f133f141e1329679bc84134326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/sh

# Copyright (C) 2014 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

set -e

ROOT="$1"

##########################################################################
# Substitutions in configuration files
##########################################################################

cat <<EOF > "$ROOT"/etc/openstack-nova-setup.sed
s/##NOVA_SERVICE_USER##/$NOVA_SERVICE_USER/g
s/##NOVA_SERVICE_PASSWORD##/$NOVA_SERVICE_PASSWORD/g
s/##NOVA_PUBLIC_URL##/$NOVA_PUBLIC_URL/g
s/##NOVA_INTERNAL_URL##/$NOVA_INTERNAL_URL/g
s/##NOVA_ADMIN_URL##/$NOVA_ADMIN_URL/g
s/##NOVA_HOST##/$NOVA_HOST/g
s/##NOVA_REGION##/$NOVA_REGION/g
s/##NOVA_NOVNCPROXY_BASE_URL##/$NOVA_NOVNCPROXY_BASE_URL/g
s/##NOVA_DB_USER##/$NOVA_DB_USER/g
s/##NOVA_DB_PASSWORD##/$NOVA_DB_PASSWORD/g
EOF

sed -f "$ROOT"/etc/openstack-nova-setup.sed -i \
       "$ROOT"/etc/nova/nova.conf \
       "$ROOT"/etc/neutron/neutron.conf \
       "$ROOT"/etc/neutron/metadata_agent.ini \
       "$ROOT"/usr/share/openstack/openstack-nova-setup 

##########################################################################

ln -sf "/etc/systemd/system/openstack-nova-setup.service" \
    "$ROOT/etc/systemd/system/multi-user.target.wants/openstack-nova-setup.service"

##########################################################################
# Enable libvirtd and libvirt-guests services
##########################################################################

wants_dir="$ROOT"/usr/lib/systemd/system/multi-user.target.wants
mkdir -p "$wants_dir"
mkdir -p "$ROOT"/var/lock/subsys
ln -sf ../libvirtd.service "$wants_dir/libvirtd.service"
ln -sf ../libvirt-guests.service "$wants_dir/libvirt-guests.service"

##########################################################################
# Change iprange for the interal libvirt to avoid clashes
# with eth0 ip range
##########################################################################

sed -i "s/192\.168\.122\./192\.168\.1\./g" \
       "$ROOT"/etc/libvirt/qemu/networks/default.xml