blob: 0d8e05a1c816c3ccd51f5d376d3ef481a71a3c44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
- 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'
|