forked from infra/ansible
[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:
parent
ea5ca95c57
commit
fa58d2541d
1 changed files with 10 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue