From 5d5cfe506ac1ccf3af88e80150508d1620d16e9f Mon Sep 17 00:00:00 2001 From: Andre Kostur <122826329+AKosturArista@users.noreply.github.com> Date: Wed, 17 Jan 2024 13:06:10 -0800 Subject: [PATCH] Set the execute bit on sysDescr_pass.py (#306) #### Why I did it Slim images may have a sysDescr_pass.py script that does not correctly have the execute bit set resulting in any request for the sysDescr.0 OID via SNMP would fail. By setting the execute bit directly in source control, this script is no longer reliant on any deployment script to fix the permissions after the fact. #### How I did it Set the execute bit directly within source control #### How to verify it Testing on a platform which uses a slim image should reliably pass the snmp/test_snmp_v2mib.py test. --- src/sonic_ax_impl/bin/sysDescr_pass.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 src/sonic_ax_impl/bin/sysDescr_pass.py diff --git a/src/sonic_ax_impl/bin/sysDescr_pass.py b/src/sonic_ax_impl/bin/sysDescr_pass.py old mode 100644 new mode 100755