From 85d36e4d0ea56b7345f0633922101ecb50f56cbd Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Tue, 16 Jun 2026 15:14:53 -0400 Subject: [PATCH] snmp/distro: add missing space in Solaris output The Solaris output lacks a space between `$REV` and `($ARCH`. It was missing when the script was added in 4683c68 (Added Snmpd.conf example and distro executable, 2015-07-28). Fix it. --- snmp/distro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snmp/distro b/snmp/distro index da06f943a..2b87b1037 100755 --- a/snmp/distro +++ b/snmp/distro @@ -8,7 +8,7 @@ REV=$(uname -r) if [ "${OS}" = "SunOS" ] ; then OS=Solaris ARCH=$(uname -p) - OSSTR="${OS} ${REV}(${ARCH} $(uname -v))" + OSSTR="${OS} ${REV} (${ARCH} $(uname -v))" elif [ "${OS}" = "AIX" ] ; then OSSTR="${OS} $(oslevel) ($(oslevel -r))"