Initial commit
[ta/infra-ansible.git] / roles / bootstrap-host / vars / ubuntu.yml
1 ---
2 # Copyright 2015, Rackspace US, Inc.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 packages_install:
17   - bridge-utils
18   - build-essential
19   - curl
20   - ethtool
21   - git-core
22   - ipython
23   - linux-image-extra-{{ ansible_kernel }}
24   - lvm2
25   - python2.7
26   - python-dev
27   - tmux
28   - vim
29   - vlan
30   - xfsprogs
31   - iputils-tracepath
32
33 packages_remove:
34   - libmysqlclient18
35   - mysql-common
36
37 swap_create_command: "fallocate -l {{ bootstrap_host_swap_size }}G /openstack/swap.img"
38 rc_local: /etc/rc.local
39 rc_local_insert_before: "^exit 0$"