Add Ansible task to fetch nitro node config file #8

Merged
nabarun merged 4 commits from deep-stack/testnet-ops:ag-handle-prompt into main 2024-09-17 13:55:19 +00:00
Showing only changes of commit 6693b42ab7 - Show all commits

View File

@ -9,6 +9,13 @@
PATH: "{{ ansible_env.PATH }}:/home/{{ansible_user}}/bin" PATH: "{{ ansible_env.PATH }}:/home/{{ansible_user}}/bin"
tasks: tasks:
- name: Install yq
get_url:
url: https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64
dest: /usr/bin/yq
mode: '0755'
become: yes
- name: Create directory for nitro-stack - name: Create directory for nitro-stack
file: file:
path: "{{ nitro_directory }}" path: "{{ nitro_directory }}"