mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-06-16 07:39:23 +00:00
15 lines
262 B
YAML
15 lines
262 B
YAML
# install bbj
|
|
---
|
|
- name: Install bbj client script
|
|
copy:
|
|
src: ../files/bbj
|
|
dest: /usr/local/bin/bbj
|
|
owner: root
|
|
group: root
|
|
mode: 0755
|
|
|
|
- name: Clone bbj
|
|
git:
|
|
repo: https://tildegit.org/bbj/bbj
|
|
dest: /usr/share/bbj
|
|
force: yes |