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

19 lines
512 B
YAML
Raw Normal View History

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
- name: Record base gui version
lineinfile: dest=/etc/iiab/iiab.env
2017-05-27 18:09:50 +00:00
regexp='^BASE_VERSION=*'
line='BASE_VERSION="{{ gui_version }}"'
state=present