mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
ensure network is completed before saying first_run is complete
This commit is contained in:
parent
8e66dd538e
commit
bd1320e58b
3 changed files with 17 additions and 24 deletions
|
@ -32,25 +32,6 @@
|
||||||
mode=0755
|
mode=0755
|
||||||
state=directory
|
state=directory
|
||||||
|
|
||||||
# this script can be sourced to get iiab location
|
|
||||||
- name: Create iiab.env file
|
|
||||||
template: src=iiab.env.j2
|
|
||||||
dest=/etc/iiab/iiab.env
|
|
||||||
owner=root
|
|
||||||
group=root
|
|
||||||
mode=0644
|
|
||||||
|
|
||||||
- name: put a python interface to iiab.env
|
|
||||||
template: src=iiab_env.py.j2
|
|
||||||
dest=/etc/iiab/iiab_env.py
|
|
||||||
|
|
||||||
- name: create ansible.d facts directory
|
|
||||||
file: path=/etc/ansible/facts.d
|
|
||||||
owner=root
|
|
||||||
group=root
|
|
||||||
mode=0750
|
|
||||||
state=directory
|
|
||||||
|
|
||||||
- name: Set XO model
|
- name: Set XO model
|
||||||
set_fact:
|
set_fact:
|
||||||
phplib_dir: '{{ ansible_local["local_facts"]["phplib_dir"] }}'
|
phplib_dir: '{{ ansible_local["local_facts"]["phplib_dir"] }}'
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
when: not installing
|
when: not installing
|
||||||
|
|
||||||
# If we got here we're done
|
# If we got here we're done
|
||||||
- name: Record base gui version
|
#- name: Record base gui version
|
||||||
lineinfile: dest=/etc/iiab/iiab.env
|
# lineinfile: dest=/etc/iiab/iiab.env
|
||||||
regexp='^BASE_VERSION=*'
|
# regexp='^BASE_VERSION=*'
|
||||||
line='BASE_VERSION="{{ gui_version }}"'
|
# line='BASE_VERSION="{{ gui_version }}"'
|
||||||
state=present
|
# state=present
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
- name: Server Options Installed
|
- name: Server Options Installed
|
||||||
command: echo Server Options Installed
|
command: echo Server Options Installed
|
||||||
|
|
||||||
|
# this script can be sourced to get iiab location
|
||||||
|
- name: Create iiab.env file
|
||||||
|
template: src=roles/1-prep/templates/iiab.env.j2
|
||||||
|
dest=/etc/iiab/iiab.env
|
||||||
|
owner=root
|
||||||
|
group=root
|
||||||
|
mode=0644
|
||||||
|
|
||||||
|
- name: put a python interface to iiab.env
|
||||||
|
template: src=roles/1-prep/templates/iiab_env.py.j2
|
||||||
|
dest=/etc/iiab/iiab_env.py
|
||||||
|
|
||||||
- name: Stop postgresql service
|
- name: Stop postgresql service
|
||||||
command: "/etc/init.d/postgresql stop"
|
command: "/etc/init.d/postgresql stop"
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue