
* integrate bootstrap.sh into the Vagrantfile * remove deprecated patches * remove unused files * remove support for local Squid installation * fix several syntax issues identified by Rubocop Change-Id: I45d7aada7a9c5d1b7affcc3e3d246bebecd02fc4
12 lines
424 B
Django/Jinja
12 lines
424 B
Django/Jinja
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
|
|
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
|
|
|
|
# <<< Packstack >>>
|
|
{% for name in ['controller', 'network', 'storage'] %}
|
|
{{ address[name] }} {{ name }}.site {{ name }}
|
|
{% endfor %}
|
|
{% for ip in address['compute'] %}
|
|
{{ ip }} compute{{ loop.index }}.site compute{{ loop.index }}
|
|
{% endfor %}
|
|
# >>> Packstack <<<
|