# Base Server - name: ...IS BEGINNING ===================================== command: echo - name: HTTPD include_role: name: httpd # has no "when: XXXXX_install" flag tags: base, httpd - name: IIAB-ADMIN include_role: name: iiab-admin # has no "when: XXXXX_install" flag tags: base, iiab-admin - name: MYSQL include_role: name: mysql # has no "when: XXXXX_install" flag tags: base, mysql - name: Make sure there is a content directory file: dest={{ doc_root }}/local_content state=directory - name: Restart httpd service: name={{ apache_service }} state=restarted when: not installing # If we got here we're done - name: Record STAGE lineinfile: dest=/etc/iiab/iiab.env regexp='^STAGE=*' line='STAGE=3' state=present - name: ...HAS COMPLETED ==================================== command: echo