mirror of https://github.com/sipwise/repoapi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
349 B
18 lines
349 B
---
|
|
- hosts: all
|
|
connection: local
|
|
sudo: True
|
|
sudo_user: root
|
|
tasks:
|
|
- name: install Debian package requirements
|
|
apt: name=libyaml-dev state=present
|
|
apt: name=python3-dev state=present
|
|
apt: name=python3-venv state=present
|
|
|
|
- hosts: all
|
|
connection: local
|
|
tasks:
|
|
- name: deploy
|
|
shell: |
|
|
make deploy
|