Update to running setup.
This commit is contained in:
parent
5d6f044b72
commit
0150bf732a
2
meta/.galaxy_install_info
Normal file
2
meta/.galaxy_install_info
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
install_date: 'Do 14 Mai 2026 19:50:56 '
|
||||||
|
version: ''
|
||||||
@ -9,17 +9,31 @@
|
|||||||
- ca-certificates
|
- ca-certificates
|
||||||
- gnupg2
|
- gnupg2
|
||||||
- lsb-release
|
- lsb-release
|
||||||
- libmagickcore-6.q16-6-extra # SVG for imagick php module
|
|
||||||
|
|
||||||
- name: install PHP sury repository key
|
- name: Create keyrings directory
|
||||||
apt_key:
|
file:
|
||||||
|
path: /etc/apt/keyrings
|
||||||
|
state: directory
|
||||||
|
mode: '0755'
|
||||||
|
|
||||||
|
- name: Download Sury PHP repository key
|
||||||
|
get_url:
|
||||||
url: https://packages.sury.org/php/apt.gpg
|
url: https://packages.sury.org/php/apt.gpg
|
||||||
state: present
|
dest: /etc/apt/keyrings/sury-php.gpg
|
||||||
|
mode: '0644'
|
||||||
|
|
||||||
- name: install PHP sury repository
|
- name: Add Sury PHP repository
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: "deb https://packages.sury.org/php/ {{ ansible_distribution_release }} main"
|
repo: >-
|
||||||
|
deb [signed-by=/etc/apt/keyrings/sury-php.gpg]
|
||||||
|
https://packages.sury.org/php/
|
||||||
|
{{ ansible_distribution_release }} main
|
||||||
state: present
|
state: present
|
||||||
|
filename: sury-php
|
||||||
|
|
||||||
|
- name: Update apt cache
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
|
||||||
- name: install PHP and recommendations
|
- name: install PHP and recommendations
|
||||||
apt:
|
apt:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user