1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/3-base-server/tasks/main.yml

36 lines
702 B
YAML
Raw Normal View History

2017-10-27 02:22:59 +00:00
# Base Server
2017-10-30 20:32:31 +00:00
- name: ...IS BEGINNING =====================================
2017-10-27 02:22:59 +00:00
command: echo
- name: HTTPD
include_role:
name: httpd
2017-10-27 02:44:54 +00:00
# has no "when: XXXXX_install" flag
2017-10-27 02:22:59 +00:00
tags: base, httpd
- name: IIAB-ADMIN
include_role:
name: iiab-admin
2017-10-27 02:44:54 +00:00
# has no "when: XXXXX_install" flag
2017-10-27 02:22:59 +00:00
tags: base, iiab-admin
2017-10-27 17:32:07 +00:00
- name: MYSQL
include_role:
name: mysql
# has no "when: XXXXX_install" flag
2017-10-27 17:32:07 +00:00
tags: base, mysql
2017-05-27 18:09:50 +00:00
- name: Restart httpd
service:
name: "{{ apache_service }}"
state: restarted
2017-05-27 18:09:50 +00:00
when: not installing
- name: Recording STAGE 3 HAS COMPLETED =====================
lineinfile:
dest: /etc/iiab/iiab.env
regexp: '^STAGE=*'
line: 'STAGE=3'
state: present