Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile.rocky8
Original file line number Diff line number Diff line change
Expand Up @@ -1497,6 +1497,10 @@ RUN cp generated-confs/libnss_mig.conf /etc/ \
#&& cp /etc/nsswitch.conf /etc/nsswitch.conf.backup
&& cp generated-confs/nsswitch.conf /etc/

# Adjust paramiko to reduce log noise from scans if matching patch is available
RUN cd $MIG_ROOT/mig/src/paramiko \
&& if [ -e Makefile ]; then make patch PLATFORM=el8 ; fi

RUN chmod 755 generated-confs/envvars \
&& chmod 755 generated-confs/httpd.conf

Expand Down
4 changes: 4 additions & 0 deletions Dockerfile.rocky9
Original file line number Diff line number Diff line change
Expand Up @@ -1384,6 +1384,10 @@ RUN cp generated-confs/libnss_mig.conf /etc/ \
#&& cp /etc/nsswitch.conf /etc/nsswitch.conf.backup
&& cp generated-confs/nsswitch.conf /etc/

# Adjust paramiko to reduce log noise from scans if matching patch is available
RUN cd $MIG_ROOT/mig/src/paramiko \
&& if [ -e Makefile ]; then make patch PLATFORM=el9 ; fi

RUN chmod 755 generated-confs/envvars \
&& chmod 755 generated-confs/httpd.conf

Expand Down