WIP: Create page for storage boxes
This commit is contained in:
parent
ab9fa7e008
commit
e5e1fd1b16
2 changed files with 28 additions and 17 deletions
|
@ -8,10 +8,20 @@
|
|||
ansible.builtin.package_facts:
|
||||
manager: auto
|
||||
tags: facts
|
||||
when: inventory_hostname not in groups.storage_boxes
|
||||
|
||||
- name: Set facts for storage storage boxes
|
||||
ansible.builtin.set_fact:
|
||||
ansible_date_time:
|
||||
date: "{{ '%Y-%m-%d' | strftime }}"
|
||||
time: "{{ '%H:%M:%S' | strftime }}"
|
||||
when: inventory_hostname in groups.storage_boxes
|
||||
|
||||
- name: Create hypervisor items
|
||||
ansible.builtin.import_tasks: hypervisor.yml
|
||||
when: "'qemu-system-x86' in ansible_facts.packages"
|
||||
when:
|
||||
- "'qemu-system-x86' in ansible_facts.packages"
|
||||
- "inventory_hostname not in groups.storage_boxes"
|
||||
tags:
|
||||
- hypervisor
|
||||
- server
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{% set host_short = inventory_hostname.split('.')[0] %}
|
||||
{% if inventory_hostname not in groups.storage_boxes %}
|
||||
|
||||
{%- if ansible_virtualization_role is defined %}{{'{{:cmdb:kvm.png?0x50|}}'}}{% endif %}
|
||||
{%- if 'nginx' in ansible_facts.packages %}{{'{{:cmdb:nginx.png?0x50|}}'}}{% endif %}
|
||||
|
@ -10,6 +11,7 @@
|
|||
{%- if 'postgresql' in ansible_facts.packages %}{{'{{:cmdb:postgresql.png?0x50|}}'}}{% endif %}
|
||||
{%- if 'tinc' in ansible_facts.packages %}{{'{{:cmdb:tinc.png?0x50|}}'}}{% endif %}
|
||||
{%- if 'tor' in ansible_facts.packages %}{{'{{:cmdb:tor.png?0x50|}}'}}{% endif %}
|
||||
{% endif %}
|
||||
|
||||
====== {{ inventory_hostname }} =======
|
||||
|
||||
|
@ -19,7 +21,7 @@
|
|||
{% include 'section_customer.txt.j2' %}
|
||||
{% endif %}
|
||||
|
||||
{% if inventory_hostname not in storage_boxes %}
|
||||
{% if inventory_hostname not in groups.storage_boxes %}
|
||||
{% include 'section_general.txt.j2' %}
|
||||
|
||||
{% include 'section_os-software.txt.j2' %}
|
||||
|
@ -31,11 +33,6 @@
|
|||
{% include 'section_mounted_fs.txt.j2' %}
|
||||
|
||||
{% include 'section_networking.txt.j2' %}
|
||||
{% endif %}
|
||||
|
||||
{% if inventory_hostname in storage_boxes %}
|
||||
{% include 'section_storage_boxes.txt.j2' %}
|
||||
{% endif %}
|
||||
|
||||
{% if "qemu-system-x86" in ansible_facts.packages %}
|
||||
===== KVM =====
|
||||
|
@ -64,3 +61,7 @@
|
|||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% elif inventory_hostname in groups.storage_boxes %}
|
||||
{% include 'section_storage_boxes.txt.j2' %}
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue