You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffmyk-ansible/roles/install_php/tasks/main.yml

12 lines
234 B
YAML

---
- name: install php
pacman:
name: php
state: present
- name: set default_socket_timeout
lineinfile:
path: /etc/php/php.ini
regexp: '^;?default_socket_timeout'
line: 'default_socket_timeout = 10'