ansible/roles/shell/tasks/pb.yml

14 lines
208 B
YAML
Raw Normal View History

2019-05-25 22:44:24 +00:00
# install pb
---
- name: clone pb
git:
repo: 'https://tildegit.org/tomasino/pb'
dest: /usr/src/pb
force: yes
- name: install pb
make:
chdir: /usr/src/pb
target: install
become: yes