--- - name: uninstall prerquisite yum: name: - php-xml - php-mbstring - php-pdo - php-intl - php-ldap - php-mysqlnd state: removed become: true - name: delete link webmail file: path: "{{ item }}" state: absent with_items: - /usr/share/roundcubemail-1.2.5 - /usr/share/webmail - /usr/share/webmail/config/config.inc.php - /etc/httpd/conf.d/http-webmail.conf become: true - name: delete DB user mysql_user: name: roundcube password: Erfg67Jnmk #priv: 'roundcubemail.*:ALL' state: absent become: true - name: delete database mysql_db: name: roundcubemail state: absent