-
Notifications
You must be signed in to change notification settings - Fork 4
/
os-deploy-vagrant.sh
executable file
·79 lines (56 loc) · 2.03 KB
/
os-deploy-vagrant.sh
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
67
68
69
70
71
72
73
74
75
76
77
78
79
#! /bin/bash
# Copyright 2016, Sandvine Incorporated.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
WHOAMI=vagrant
HOSTNAME=controller-1
FQDN=controller-1.yourdomain.com
DOMAIN=yourdomain.com
# Display local configuration
echo
echo "The detected local configuration are:"
echo
echo -e "* Username:"'\t'$WHOAMI
echo -e "* Hostname:"'\t'$HOSTNAME
echo -e "* FQDN:"'\t''\t'$FQDN
echo -e "* Domain:"'\t'$DOMAIN
if [ -z $HOSTNAME ]; then
echo "Hostname not found... Configure the file /etc/hostname with your hostname. ABORTING!"
exit 1
fi
if [ -z $DOMAIN ]; then
echo "Domain not found... Configure the file /etc/hosts with your \"IP + FQDN + HOSTNAME\". ABORTING!"
exit 2
fi
if [ -z $FQDN ]; then
echo "FQDN not found... Configure your /etc/hosts according. ABORTING!"
exit 3
fi
echo
echo "Configuring ansible/group_vars/all file based on current environment..."
sed -i -e 's/controller-1.yourdomain.com/'$FQDN'/g' ansible/group_vars/all
sed -i -e 's/yourdomain.com/'$DOMAIN'/g' ansible/group_vars/all
echo
echo "Configuring ansible/group_vars_all with your current "$WHOAMI" user..."
sed -i -e 's/{{ubuntu_user}}/'$WHOAMI'/g' ansible/group_vars/all
DEFAULT_GW_INT=eth0
echo
echo "Your primary network interface is:"
echo "dafault route via:" $DEFAULT_GW_INT
echo
echo "Preparing Ansible variable based on current default gateway interface..."
sed -i -e 's/os_mgmt:.*/os_mgmt: "'$PRIMARY_INTERFACE'"/' ansible/group_vars/all
echo
echo "Running Ansible through Vagrant, deploying OpenStack:"
echo
vagrant up