ansible/roles/shell/tasks/bbj.yml

15 lines
262 B
YAML
Raw Normal View History

2023-07-07 15:56:41 +00:00
# install bbj
---
2023-07-07 16:01:27 +00:00
- name: Install bbj client script
copy:
src: ../files/bbj
dest: /usr/local/bin/bbj
owner: root
group: root
mode: 0755
2023-07-07 15:56:41 +00:00
- name: Clone bbj
git:
repo: https://tildegit.org/bbj/bbj
dest: /usr/share/bbj
2023-07-07 17:15:59 +00:00
force: yes