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.
12 lines
234 B
YAML
12 lines
234 B
YAML
8 years ago
|
---
|
||
|
- 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'
|