forked from ravi2krishna/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
14-without-handler.yml
57 lines (48 loc) · 1.24 KB
/
14-without-handler.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# yum and service modules with sudo access
# using selinux module to set the target to permissive mode
# Adding PHP Files
---
- hosts: web
become: yes
tasks:
# This task will set the SELinux to Permissive mode
- name: Put SELinux in permissive mode
selinux:
policy: targeted
state: permissive
# This task will install apache http server
- name: Install Apache
yum:
name: httpd
state: present
# This task will start apache http server
- name: Start Apache
service:
name: httpd
state: started
enabled: yes
# This task will copy custom httpd.conf file to /etc/httpd/conf/httpd.conf
- name: Copy apache config with port 8080 defined
copy:
src: 14/httpd.conf
dest: /etc/httpd/conf/httpd.conf
# This task will restart apache http server
- name: Restart Apache
service:
name: httpd
state: restarted
# This task will copy date.php to /var/www/html
- name: Copy php file
copy:
src: 14/date.php
dest: /var/www/html/date.php
# This task will Install PHP
- name: Install PHP
yum:
name: php
state: present
# This task will restart apache http server
- name: Restart Apache
service:
name: httpd
state: restarted