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