| author | Tomas Zeman <tzeman@volny.cz> |
| Wed, 12 Sep 2018 16:28:23 +0200 | |
| changeset 36 | 9db9af459e7b |
| parent 35 | d126a511b32a |
| child 37 | 968d93e43326 |
| scripts/os-info | file | annotate | diff | comparison | revisions |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/os-info Wed Sep 12 16:28:23 2018 +0200 @@ -0,0 +1,13 @@ +#!/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