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.
|
---
|
|
- 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'
|