mirror of
https://github.com/iiab/iiab.git
synced 2025-02-14 20:22:08 +00:00
indentation/syntax per new Ansible docs
This commit is contained in:
parent
8b0252edc7
commit
23e1fc35d2
1 changed files with 8 additions and 6 deletions
|
@ -22,12 +22,14 @@
|
|||
tags: base, mysql
|
||||
|
||||
- name: Restart httpd
|
||||
service: name={{ apache_service }}
|
||||
state=restarted
|
||||
service:
|
||||
name: "{{ apache_service }}"
|
||||
state: restarted
|
||||
when: not installing
|
||||
|
||||
- name: Recording STAGE 3 HAS COMPLETED =====================
|
||||
lineinfile: dest=/etc/iiab/iiab.env
|
||||
regexp='^STAGE=*'
|
||||
line='STAGE=3'
|
||||
state=present
|
||||
lineinfile:
|
||||
dest: /etc/iiab/iiab.env
|
||||
regexp: '^STAGE=*'
|
||||
line: 'STAGE=3'
|
||||
state: present
|
||||
|
|
Loading…
Reference in a new issue