scripts/os-info
author Tomas Zeman <tomas@functionals.cz>
Tue, 21 Feb 2023 13:03:45 +0100
changeset 40 8c421321123d
parent 36 9db9af459e7b
permissions -rwxr-xr-x
run-cron-zabbix

#!/bin/sh

# OS information (structured), see agent's internal system.uname for details (as zabbix trapper)

# See uname(1) for details.
cat <<EOF
- os.release "`uname -r`"
- os.all "`uname -a`"
- os.platf "`uname -m`"
- os.arch "`uname -p`"
- os.impl "`uname -s`"
- os.version "`uname -v`"
EOF