Resources attached to the Road To DevOps tutorial
https://blog.noobtoroot.xyz/road-to-devops/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
527 B
29 lines
527 B
- name: install php, php-mysqlnd |
|
yum: |
|
name: |
|
- php |
|
- php-mysqlnd |
|
state: present |
|
update_cache: yes |
|
when: |
|
- ansible_os_family == "RedHat" |
|
notify: reload Apache |
|
|
|
- name: install php, php-mysqlnd |
|
apt: |
|
name: |
|
- php |
|
- php-mysqlnd |
|
state: present |
|
update_cache: yes |
|
when: |
|
- ansible_os_family == "Debian" |
|
notify: reload Apache |
|
|
|
|
|
- name: start php ; enable php |
|
service: |
|
name: php-fpm |
|
state: started |
|
enabled: yes |
|
|
|
|