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
437 B
19 lines
437 B
. utils/file.sh
|
|
|
|
include_once utils/programs.sh
|
|
include_once utils/classes.sh
|
|
include_once gatherer/host_information.sh
|
|
include_once gatherer/dist_information.sh
|
|
include_once gatherer/cpu_information.sh
|
|
include_once gatherer/misc_information.sh
|
|
include_once gatherer/interface_information.sh
|
|
|
|
gather_information() {
|
|
gather_host_info
|
|
gather_dist_info
|
|
gather_cpu_info
|
|
gather_uptime_info
|
|
gather_interface_info
|
|
}
|
|
|
|
# vim: set ts=4 sw=4:
|