From c664a210373e4e4c47519c76d6ad27875fba32b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20=C5=98=C3=ADdk=C3=BD?= Date: Tue, 7 Jul 2020 13:19:15 +0200 Subject: [PATCH] Resolves: #1815984 - fix config wrapper scritp --- net-snmp-config | 22 +++++++++++----------- net-snmp.spec | 1 + 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/net-snmp-config b/net-snmp-config index 7607ea7..a001eef 100755 --- a/net-snmp-config +++ b/net-snmp-config @@ -16,47 +16,47 @@ arch=`arch` echo $arch | grep -q i.86 if [ $? -eq 0 ] ; then - net-snmp-config-i386 $* + net-snmp-config-i386 "$@" exit 0 fi if [ "$arch" = "ia64" ] ; then - net-snmp-config-ia64 $* + net-snmp-config-ia64 "$@" exit 0 fi if [ "$arch" = "ppc" ] ; then - net-snmp-config-ppc $* + net-snmp-config-ppc "$@" exit 0 fi if [ "$arch" = "ppc64" ] ; then - net-snmp-config-ppc64 $* + net-snmp-config-ppc64 "$@" exit 0 fi if [ "$arch" = "s390" ] ; then - net-snmp-config-s390 $* + net-snmp-config-s390 "$@" exit 0 fi if [ "$arch" = "s390x" ] ; then - net-snmp-config-s390x $* + net-snmp-config-s390x "$@" exit 0 fi if [ "$arch" = "x86_64" ] ; then - net-snmp-config-x86_64 $* + net-snmp-config-x86_64 "$@" exit 0 fi if [ "$arch" = "alpha" ] ; then - net-snmp-config-alpha $* + net-snmp-config-alpha "$@" exit 0 fi if [ "$arch" = "sparc" ] ; then - net-snmp-config-sparc $* + net-snmp-config-sparc "$@" exit 0 fi if [ "$arch" = "sparc64" ] ; then - net-snmp-config-sparc64 $* + net-snmp-config-sparc64 "$@" exit 0 fi if [ "$arch" = "aarch64" ] ; then - net-snmp-config-aarch64 $* + net-snmp-config-aarch64 "$@" exit 0 fi echo "Cannot determine architecture" diff --git a/net-snmp.spec b/net-snmp.spec index 6718620..cca082b 100644 --- a/net-snmp.spec +++ b/net-snmp.spec @@ -539,6 +539,7 @@ LD_LIBRARY_PATH=%{buildroot}/%{_libdir} make test - services starts after network-online.target - add missing part of memory leak patch - add support for AES192 and AES256 +- fix net-snmp-config wrapper script (#1815984) * Mon Jun 22 2020 Jitka Plesnikova - 1:5.8-21 - Perl 5.32 rebuild