diff --git a/roles/shell/tasks/main.yml b/roles/shell/tasks/main.yml index 3c416ff..81fddcc 100644 --- a/roles/shell/tasks/main.yml +++ b/roles/shell/tasks/main.yml @@ -13,3 +13,4 @@ - include: postfix.yml - include: iris.yml - include: gopher.yml +- include: pb.yml diff --git a/roles/shell/tasks/pb.yml b/roles/shell/tasks/pb.yml new file mode 100644 index 0000000..c300ea1 --- /dev/null +++ b/roles/shell/tasks/pb.yml @@ -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