mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Merge pull request #677 from holta/3-base-server
3-base-server: indentation/syntax per new Ansible docs
This commit is contained in:
commit
f70896a8f6
1 changed files with 8 additions and 6 deletions
|
@ -22,12 +22,14 @@
|
||||||
tags: base, mysql
|
tags: base, mysql
|
||||||
|
|
||||||
- name: Restart httpd
|
- name: Restart httpd
|
||||||
service: name={{ apache_service }}
|
service:
|
||||||
state=restarted
|
name: "{{ apache_service }}"
|
||||||
|
state: restarted
|
||||||
when: not installing
|
when: not installing
|
||||||
|
|
||||||
- name: Recording STAGE 3 HAS COMPLETED =====================
|
- name: Recording STAGE 3 HAS COMPLETED =====================
|
||||||
lineinfile: dest=/etc/iiab/iiab.env
|
lineinfile:
|
||||||
regexp='^STAGE=*'
|
dest: /etc/iiab/iiab.env
|
||||||
line='STAGE=3'
|
regexp: '^STAGE=*'
|
||||||
state=present
|
line: 'STAGE=3'
|
||||||
|
state: present
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue