srv-stage/u-phpldapadmin.yml
2025-01-19 20:23:14 +01:00

25 lines
462 B
YAML

---
- name: uninstall PHPLDAPAdmin
yum:
name:
- phpldapadmin
- php-gd
- php-ldap
state: absent
become: true
- name: delete phpldapadmin config file
file:
path: /etc/phpldapadmin/config.php
state: absent
become: true
- name: delete config apache
file:
path: "/etc/httpd/conf.d/{{ item }}"
state: absent
with_items:
- http-phpldapadmin.conf
become: true