mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
576 B
19 lines
576 B
- hosts: windows
|
|
gather_facts: yes
|
|
tasks:
|
|
- name: Get info
|
|
set_fact:
|
|
info:
|
|
arch: "{{ ansible_architecture2 }}"
|
|
distribution: "{{ ansible_distribution }}"
|
|
distribution_version: "{{ ansible_distribution_version }}"
|
|
kernel: "{{ ansible_kernel }}"
|
|
vendor: "{{ ansible_system_vendor }}"
|
|
model: "{{ ansible_product_name }}"
|
|
sn: "{{ ansible_product_serial }}"
|
|
cpu_vcpus: "{{ ansible_processor_vcpus }}"
|
|
memory: "{{ ansible_memtotal_mb }}"
|
|
|
|
- debug:
|
|
var: info
|