46 lines
890 B
YAML
46 lines
890 B
YAML
---
|
|
- name: stop php-fpm
|
|
systemd_service:
|
|
name: php-fpm
|
|
state: stopped
|
|
|
|
- name: uninstall php74-fpm and modules
|
|
yum:
|
|
name:
|
|
- php-fpm
|
|
- php-cli
|
|
- php-gd
|
|
- php-mbstring
|
|
- php-ldap
|
|
- php-bcmath
|
|
- php-xml
|
|
- php-pdo
|
|
- php-intl
|
|
- php-mysqlnd
|
|
- php-pear
|
|
- php-gmp
|
|
- php-zip
|
|
- php-common
|
|
- php-fedora-autoloader
|
|
- php-json
|
|
- php-process
|
|
- libicu69.x86_64
|
|
- libzip.x86_64
|
|
- oniguruma5php.x86_64
|
|
state: absent
|
|
# notify: restart_httpd
|
|
|
|
- name: delete php.ini
|
|
file:
|
|
path: /etc/php.ini
|
|
state: absent
|
|
|
|
- name: reset module php
|
|
command: dnf module reset php:remi-7.4 -y
|
|
changed_when: true
|
|
|
|
- name: uninstall Remi repo
|
|
yum:
|
|
name: remi-release
|
|
state: absent
|