mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
Add task for installing IBM Bob Shell
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
workstation_manage_opencode: true
|
workstation_manage_opencode: true
|
||||||
|
workstation_manage_ibm_bob: true
|
||||||
|
workstation_ibm_bob_install_url: "https://bob.ibm.com/download/bobshell.sh"
|
||||||
workstation_npm_packages: "{{ ai_agents_npm_packages + [] }}"
|
workstation_npm_packages: "{{ ai_agents_npm_packages + [] }}"
|
||||||
|
|||||||
@@ -48,3 +48,15 @@
|
|||||||
- workstation_npm_packages | length > 0
|
- workstation_npm_packages | length > 0
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.name }}"
|
label: "{{ item.name }}"
|
||||||
|
|
||||||
|
- name: Install IBM Bob coding agent
|
||||||
|
tags: [packages, ai_agents]
|
||||||
|
ansible.builtin.shell: >
|
||||||
|
curl -fsSL {{ workstation_ibm_bob_install_url }} | bash
|
||||||
|
args:
|
||||||
|
executable: /bin/bash
|
||||||
|
creates: /usr/local/bin/bob
|
||||||
|
become: true
|
||||||
|
when:
|
||||||
|
- workstation_manage_ibm_bob | default(false)
|
||||||
|
- workstation_ibm_bob_install_url | length > 0
|
||||||
|
|||||||
Reference in New Issue
Block a user