Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit c56208ab authored by Jean-François HOVINNE's avatar Jean-François HOVINNE Committed by Jean-François HOVINNE
Browse files

fix: Install APT requirements when in rescue mode (fixes #18)

parent 2ed4ac42
No related branches found
No related tags found
1 merge request!17fix: Install APT requirements when in rescue mode (fixes #18)
......@@ -17,6 +17,13 @@
loop: "{{ php_enabled_apt_repos }}"
rescue:
- name: Install APT requirements (rescue)
ansible.builtin.package:
name:
- software-properties-common
state: present
become: true
- name: Enable APT repositories (rescue)
ansible.builtin.command: "add-apt-repository -y {{ item }}"
become: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment