blob: e4399f6126d3a38d9b021090522ae7167425959d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- name: configure httpd
template:
src: apache.j2
dest: /etc/httpd/conf.d/bugzilla.conf
mode: 0644
- name: enable httpd
service: name=httpd enabled=yes
- name: restart httpd
service: name=httpd state=restarted
|