WIP: Create page for storage boxes

This commit is contained in:
phil 2023-11-01 15:21:27 +01:00
parent ab9fa7e008
commit e5e1fd1b16
2 changed files with 28 additions and 17 deletions

View file

@ -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

View file

@ -1,15 +1,17 @@
{% 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 %}
{%- if 'apache2' in ansible_facts.packages %}{{'{{:cmdb:apache.png?0x50|}}'}}{% endif %}
{%- if 'docker' in ansible_facts.packages %}{{'{{:cmdb:docker.png?0x50|}}'}}{% endif %}
{%- if 'php' in ansible_facts.packages %}{{'{{:cmdb:php.png?0x50|}}'}}{% endif %}
{%- if 'ruby' in ansible_facts.packages %}{{'{{:cmdb:rails.png?0x50|}}'}}{% endif %}
{%- if 'mariadb-server' in ansible_facts.packages %}{{'{{:cmdb:mariadb.png?0x50|}}'}}{% endif %}
{%- 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 %}
{%- if ansible_virtualization_role is defined %}{{'{{:cmdb:kvm.png?0x50|}}'}}{% endif %}
{%- if 'nginx' in ansible_facts.packages %}{{'{{:cmdb:nginx.png?0x50|}}'}}{% endif %}
{%- if 'apache2' in ansible_facts.packages %}{{'{{:cmdb:apache.png?0x50|}}'}}{% endif %}
{%- if 'docker' in ansible_facts.packages %}{{'{{:cmdb:docker.png?0x50|}}'}}{% endif %}
{%- if 'php' in ansible_facts.packages %}{{'{{:cmdb:php.png?0x50|}}'}}{% endif %}
{%- if 'ruby' in ansible_facts.packages %}{{'{{:cmdb:rails.png?0x50|}}'}}{% endif %}
{%- if 'mariadb-server' in ansible_facts.packages %}{{'{{:cmdb:mariadb.png?0x50|}}'}}{% endif %}
{%- 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 %}