[fas2discourse] Install make package

Make package is needed as well, let's install it and then remove all the
dangerous packages when we are done.
This commit is contained in:
Michal Konecny
2025-07-01 19:45:54 +02:00
committed by zlopez
parent ea5ca95c57
commit fa58d2541d

View File

@@ -10,10 +10,19 @@
- name: Install needed packages
ansible.builtin.package:
name: git
name:
- git
- make
state: present
- include_tasks: create-operator-namespace.yml
- include_tasks: create-keytab-secret.yml
- include_tasks: create-discourse-apikey-secret.yml
- include_tasks: deploy-fas2discourse-operator.yml
- name: Remove potentially dangerous packages that are not needed anymore
ansible.builtin.package:
name:
- git
- make
state: absent