mirror of
https://github.com/Ownercz/ssme-thesis.git
synced 2025-02-19 18:51:19 +01:00
13 lines
336 B
YAML
13 lines
336 B
YAML
---
|
|
language: python
|
|
python: "2.7"
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq python-apt python-pycurl
|
|
install:
|
|
- pip install ansible
|
|
script:
|
|
- echo localhost > inventory
|
|
- ansible-playbook --syntax-check -i inventory role.yml
|
|
- ansible-playbook -i inventory role.yml --connection=local --sudo -vvvv
|