2017-10-27 02:22:59 +00:00
|
|
|
# Base Server
|
|
|
|
|
2017-10-27 05:41:14 +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-05-31 16:38:14 +00:00
|
|
|
- name: Make sure there is a content directory
|
2017-05-27 18:09:50 +00:00
|
|
|
file: dest={{ doc_root }}/local_content
|
|
|
|
state=directory
|
|
|
|
|
|
|
|
- name: Base Server Installed
|
|
|
|
command: echo Base Server Installed
|
|
|
|
|
|
|
|
- name: Restart httpd
|
|
|
|
service: name={{ apache_service }}
|
|
|
|
state=restarted
|
|
|
|
when: not installing
|
|
|
|
|
|
|
|
# If we got here we're done
|
2017-10-06 18:54:18 +00:00
|
|
|
#- name: Record base gui version
|
|
|
|
# lineinfile: dest=/etc/iiab/iiab.env
|
|
|
|
# regexp='^BASE_VERSION=*'
|
|
|
|
# line='BASE_VERSION="{{ gui_version }}"'
|
|
|
|
# state=present
|
2017-10-27 02:22:59 +00:00
|
|
|
|
2017-10-27 05:41:14 +00:00
|
|
|
- name: ...WAS COMPLETED ====================================
|
2017-10-27 02:22:59 +00:00
|
|
|
command: echo
|