mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
11 lines
228 B
YAML
11 lines
228 B
YAML
|
name: system_info
|
||
|
examples: >-
|
||
|
See the CPU architecture of a machine as well as who made it and what its
|
||
|
serial number is.
|
||
|
|
||
|
```
|
||
|
|
||
|
SELECT CPU_type, hardware_vendor, hardware_model, hardware_serial FROM system_info;
|
||
|
|
||
|
```
|