1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

indentation/syntax per new Ansible documentation

This commit is contained in:
A Holt 2018-02-12 20:25:41 -05:00 committed by GitHub
parent 4e92f19b76
commit 6f747c71c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,7 +93,7 @@
gui_port: 443 gui_port: 443
when: adm_cons_force_ssl when: adm_cons_force_ssl
- name: Require MySQL to be on - name: Require MySQL to be on (mandatory in Stage 3!)
set_fact: set_fact:
mysql_install: True mysql_install: True
mysql_enabled: True mysql_enabled: True
@ -168,42 +168,42 @@
option: "{{ item.option }}" option: "{{ item.option }}"
value: "{{ item.value }}" value: "{{ item.value }}"
with_items: with_items:
- option: 'iiab_stage' - option: iiab_stage
value: '{{ iiab_stage }}' value: "{{ iiab_stage }}"
- option: 'iiab_base_ver' - option: iiab_base_ver
value: '{{ iiab_base_ver }}' value: "{{ iiab_base_ver }}"
- option: 'iiab_revision' - option: iiab_revision
value: '{{ iiab_revision }}' value: "{{ iiab_revision }}"
- option: 'runtime_php' - option: runtime_php
value: '{{ phplib_dir }}' value: "{{ phplib_dir }}"
- option: 'runtime_branch' - option: runtime_branch
value: '{{ ansible_local.local_facts.iiab_branch }}' value: "{{ ansible_local.local_facts.iiab_branch }}"
- option: 'runtime_commit' - option: runtime_commit
value: '{{ ansible_local.local_facts.iiab_commit }}' value: "{{ ansible_local.local_facts.iiab_commit }}"
- option: 'runtime_date' - option: runtime_date
value: '{{ ansible_date_time.iso8601 }}' value: "{{ ansible_date_time.iso8601 }}"
- option: 'ansible_version' - option: ansible_version
value: '{{ ansible_local.local_facts.ansible_version }}' value: "{{ ansible_local.local_facts.ansible_version }}"
- option: 'kernel' - option: kernel
value: '{{ ansible_kernel }}' value: "{{ ansible_kernel }}"
- option: 'memory_mb' - option: memory_mb
value: '{{ ansible_memtotal_mb }}' value: "{{ ansible_memtotal_mb }}"
- option: 'swap_mb' - option: swap_mb
value: '{{ ansible_swaptotal_mb }}' value: "{{ ansible_swaptotal_mb }}"
- option: 'product_id' - option: product_id
value: '{{ ansible_product_uuid }}' value: "{{ ansible_product_uuid }}"
- option: 'gw_active' - option: gw_active
value: '{{ gw_active }}' value: "{{ gw_active }}"
- option: 'internet_available' - option: internet_available
value: '{{ internet_available }}' value: "{{ internet_available }}"
- option: 'is_rpi' - option: is_rpi
value: '{{ is_rpi }}' value: "{{ is_rpi }}"
- option: 'first_run' - option: first_run
value: '{{ first_run }}' value: "{{ first_run }}"
- option: 'local_tz' - option: local_tz
value: '{{ local_tz }}' value: "{{ local_tz }}"
- option: 'FQDN_changed' - option: FQDN_changed
value: '{{ FQDN_changed }}' value: "{{ FQDN_changed }}"
- name: Now changing FQDN - name: Now changing FQDN
include_tasks: hostname.yml include_tasks: hostname.yml
@ -216,6 +216,6 @@
option: "{{ item.option }}" option: "{{ item.option }}"
value: "{{ item.value }}" value: "{{ item.value }}"
with_items: with_items:
- option: 'is_VM' - option: is_VM
value: 'yes' value: "yes"
when: is_VM is defined when: is_VM is defined