22 lines
559 B
YAML
22 lines
559 B
YAML
---
|
|
|
|
- hosts: all
|
|
sudo: yes
|
|
tasks:
|
|
# upgrade pbr first, old version throws strange errors
|
|
- shell: pip install pbr -U
|
|
# Setup development env for solar
|
|
- shell: pip install -e . chdir=/vagrant
|
|
- shell: pip install git+git://github.com/Mirantis/solar-agent.git
|
|
|
|
- hosts: all
|
|
tasks:
|
|
- lineinfile:
|
|
dest: /home/vagrant/.bashrc
|
|
line: eval "$(_SOLAR_COMPLETE=source solar)"
|
|
state: present
|
|
- lineinfile:
|
|
dest: /home/vagrant/.bashrc
|
|
line: export PYTHONWARNINGS="ignore"
|
|
state: present
|