taskotron: start httpd where needed
This commit is contained in:
parent
4bb95e7c2a
commit
66b02305a7
6 changed files with 18 additions and 0 deletions
|
@ -1,4 +1,7 @@
|
||||||
---
|
---
|
||||||
|
- name: start httpd (provided in the apache role)
|
||||||
|
service: name=httpd state=started
|
||||||
|
|
||||||
- name: ensure packages required for buildmaster are installed (yum)
|
- name: ensure packages required for buildmaster are installed (yum)
|
||||||
yum: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
yum: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
||||||
with_items:
|
with_items:
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
---
|
---
|
||||||
|
- name: start httpd (provided in the apache role)
|
||||||
|
service: name=httpd state=started
|
||||||
|
|
||||||
- name: ensure packages required for execdb are installed (yum)
|
- name: ensure packages required for execdb are installed (yum)
|
||||||
yum: name={{ item }} state=present
|
yum: name={{ item }} state=present
|
||||||
with_items:
|
with_items:
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
---
|
---
|
||||||
|
- name: start httpd (provided in the apache role)
|
||||||
|
service: name=httpd state=started
|
||||||
|
|
||||||
- name: ensure packages required for resultsdb are installed (yum)
|
- name: ensure packages required for resultsdb are installed (yum)
|
||||||
yum: name={{ item }} state=present
|
yum: name={{ item }} state=present
|
||||||
when: ansible_distribution_major_version|int < 22
|
when: ansible_distribution_major_version|int < 22
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
---
|
---
|
||||||
|
- name: start httpd (provided in the apache role)
|
||||||
|
service: name=httpd state=started
|
||||||
|
|
||||||
- name: ensure packages required for resultsdb_frontend are installed (yum)
|
- name: ensure packages required for resultsdb_frontend are installed (yum)
|
||||||
yum: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
yum: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
||||||
when: ansible_distribution_major_version|int < 22
|
when: ansible_distribution_major_version|int < 22
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
---
|
---
|
||||||
|
- name: start httpd (provided in the apache role)
|
||||||
|
service: name=httpd state=started
|
||||||
|
|
||||||
- name: ensure packages required for buildmaster are installed (dnf)
|
- name: ensure packages required for buildmaster are installed (dnf)
|
||||||
dnf: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
dnf: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
||||||
with_items:
|
with_items:
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
# one for taskotron and one for resultsdb. The url scheme also stays
|
# one for taskotron and one for resultsdb. The url scheme also stays
|
||||||
# closer to stg/prod
|
# closer to stg/prod
|
||||||
---
|
---
|
||||||
|
- name: start httpd (provided in the apache role)
|
||||||
|
service: name=httpd state=started
|
||||||
|
|
||||||
- name: ensure packages required for proxying are installed (yum)
|
- name: ensure packages required for proxying are installed (yum)
|
||||||
yum: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
yum: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
||||||
with_items:
|
with_items:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue