32 lines
905 B
YAML
32 lines
905 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 paquet isc-kea-common
|
|
# ansible.builtin.apt:
|
|
# deb: isc-kea-common
|
|
# state: present
|
|
|
|
- name: Installation isc-stork-server postgresql
|
|
ansible.builtin.apt:
|
|
pkg:
|
|
- isc-stork-server
|
|
- postgresql-15
|
|
|
|
- name: lancer la commande de création de la base de donnees stork
|
|
ansible.builtin.shell: su postgres --command "stork-tool db-create --db-name {{ stork_db_name }} --db-user {{ stork_db_user }} --db-password {{ stork_db_passwd }}"
|
|
|
|
- name: Generation ---- du fichier de configuration server.env
|
|
ansible.builtin.template:
|
|
src: server.env.j2
|
|
dest: /etc/stork/server.env
|
|
notify:
|
|
- Restart isc-stork-server.service
|
|
|
|
|