install pb

This commit is contained in:
fosslinux 2019-05-25 22:44:24 +00:00
parent 3055c132f7
commit 716d0b7ceb
2 changed files with 14 additions and 0 deletions

View File

@ -13,3 +13,4 @@
- include: postfix.yml
- include: iris.yml
- include: gopher.yml
- include: pb.yml

13
roles/shell/tasks/pb.yml Normal file
View File

@ -0,0 +1,13 @@
# 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