22 lines
495 B
YAML
22 lines
495 B
YAML
---
|
|
|
|
- name: Preparation
|
|
ansible.builtin.shell: curl -1sLf 'https://dl.cloudsmith.io/public/isc/stork/cfg/setup/bash.deb.sh' | sudo bash
|
|
|
|
- name: Update apt
|
|
ansible.builtin.apt:
|
|
update_cache: yes
|
|
|
|
- name: Installation isc-stork-agent
|
|
ansible.builtin.apt:
|
|
name: isc-stork-agent
|
|
state: present
|
|
|
|
- name: Generation du fichier de configuration agent.env
|
|
ansible.builtin.template:
|
|
src: agent.env.j2
|
|
dest: /etc/stork/agent.env
|
|
notify:
|
|
- Restart isc-stork-agent
|
|
|