--- - name: Ensure php is installed. pacman: name: - php - php-fpm state: present become: yes - name: Ensure php-fpm is started and enabled to start at boot. service: name=php-fpm state=started enabled=yes become: yes - name: enable php extetion become: true replace: dest: /etc/php/php.ini regexp: "^;extension={{item}}$" replace: "extension={{item}}" with_items: "{{php_extention_enable}}" notify: reload_php_fpm