File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ RUN apt-get update && \
1212 curl && \
1313 rm -rf /var/lib/apt/lists/*
1414
15- # Wireshark's init.lua sets disable_lua=true when running as root, which silently skips
16- # user scripts loaded via -X lua_script:. CI runs as root, so override at end of init.lua.
17- RUN echo 'disable_lua = false' >> /usr/share/wireshark/init.lua
15+ # Debian Trixie ships an empty /usr/share/wireshark/init.lua — Wireshark's Lua subsystem
16+ # silently skips all user -X lua_script: files when init.lua is empty/missing. Replace it
17+ # with the upstream init.lua from the matching Wireshark release branch.
18+ RUN curl -fsSL https://gitlab.com/wireshark/wireshark/-/raw/release-4.4/epan/wslua/init.lua \
19+ -o /usr/share/wireshark/init.lua && \
20+ echo 'disable_lua = false' >> /usr/share/wireshark/init.lua
You can’t perform that action at this time.
0 commit comments