Minimal snmpd configuration for the Docker containers. Also change the pid-dir to /var/run/ since

that is what all the tests are expecting. Can we pass the tests now?
This commit is contained in:
Kristofer Hallin 2022-05-05 19:16:47 +00:00 committed by Olof hagsand
parent 4182ee3540
commit f9d2acf025
6 changed files with 18 additions and 12 deletions

View file

@ -122,9 +122,11 @@ RUN apk add --update flex bison fcgi-dev
RUN apk add --update net-snmp net-snmp-tools
# Some custom configuration for SNMP
RUN sed -i 's/#rocommunity public localhost/rocommunity public localhost/' /etc/snmp/snmpd.conf
RUN echo "agentXSocket unix:/var/run/snmp.sock" >> /etc/snmpd.conf
RUN echo "agentxperms 777 777" >> /etc/snmpd.conf
RUN echo "master agentx" > /etc/snmp/snmpd.conf
RUN echo "agentaddress 127.0.0.1" >> /etc/snmp/snmpd.conf
RUN echo "rwcommunity public localhost" >> /etc/snmp/snmpd.conf
RUN echo "agentXSocket unix:/var/run/snmp.sock" >> /etc/snmp/snmpd.conf
RUN echo "agentxperms 777 777" >> /etc/snmp/snmpd.conf
# Test-specific (for test scripts)
RUN apk add --update sudo curl procps grep make bash expect