blob: 35c8661f73f1805c21542b48c1fd0c322d5a04c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
System Information from inxi
============================
{% for host in groups['compute'] %}
{{ hostvars[host].ansible_hostname }}
-----------------------------
{{ ('CPU Brand', hostvars[host].inxi_info.cpu[0])|justify }}
{{ ('Disk', hostvars[host].inxi_info.disk[0])|justify }}
{{ ('Host Name', hostvars[host].inxi_info.hostname[0])|justify }}
{{ ('Kernel', hostvars[host].inxi_info.kernel[0])|justify }}
{{ ('Memory', hostvars[host].inxi_info.memory[0])|justify }}
{{ ('Operating System', hostvars[host].inxi_info.os[0])|justify }}
{{ ('Product', hostvars[host].inxi_info.product[0])|justify }}
{% endfor %}
|