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.
17 lines
288 B
17 lines
288 B
#!/bin/dash
|
|
|
|
. ./utils.sh
|
|
|
|
include_once host_information.sh
|
|
include_once dist_information.sh
|
|
include_once cpu_information.sh
|
|
include_once interface_information.sh
|
|
|
|
gather_information() {
|
|
gather_host_info
|
|
gather_dist_info
|
|
gather_cpu_info
|
|
gather_interface_info
|
|
}
|
|
|
|
# vim: set ts=4 sw=4:
|