Skip to content
Open
Changes from 1 commit
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
11 changes: 7 additions & 4 deletions net/radsecproxy/files/radsecproxy.init
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,10 @@ client_block() {
append_params "$cfg" \
Include host type secret tls matchCertificateAttribute duplicateInterval \
AddTTL fticksVISCOUNTRY fticksVISINST rewrite rewriteIn rewriteOut \
rewriteAttribute
rewriteAttribute serverName PSKkey PSKidentity

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This adds new UCI-driven directives to the installed /etc/init.d/radsecproxy script, which is a functional change to package contents. PKG_RELEASE in the Makefile should be incremented (2 → 3) so existing installs receive the rebuilt package on opkg upgrade. See net/radsecproxy/Makefile#L12. The bot's release-audit note applies here — this is not a cosmetic edit, so the "do not increment for minor changes" exception does not apply.


Generated by Claude Code

append_bools "$cfg" \
IPv4Only IPv6Only certificateNameCheck
IPv4Only IPv6Only certificateNameCheck requireMessageAuthenticator \
requireMessageAuthenticatorProxy
echo "}" >> "$CONFFILE"
}

Expand All @@ -101,9 +102,11 @@ server_block() {
append_params "$cfg" \
Include host port type secret tls matchCertificateAttribute \
AddTTL rewrite rewriteIn rewriteOut retryCount dynamicLookupCommand \
retryInterval
retryInterval serverName SNIservername PSKkey PSKidentity DTLSForceMTU \
source
append_bools "$cfg" \
IPv4Only IPv6Only certificateNameCheck statusServer LoopPrevention
IPv4Only IPv6Only certificateNameCheck statusServer LoopPrevention SNI \
requireMessageAuthenticator blockingStartup
echo "}" >> "$CONFFILE"
}

Expand Down