Just making a quick note here that our oneliner grep $( ( . /etc/os-release && echo $VERSION_CODENAME) ) doesn't work in Fish. It's cryptic anyway to the casual observer so we might as well do it a bit different that is more portable: awk -F= '/^VERSION_CODENAME=/ {print $2}' /etc/os-release. Tested to work with mawk as well as gawk since Debian ships only mawk by default.
The actual change needs to happen in kanidm/kanidm, but logging this here as a reminder to go do it there.
Just making a quick note here that our oneliner
grep $( ( . /etc/os-release && echo $VERSION_CODENAME) )doesn't work in Fish. It's cryptic anyway to the casual observer so we might as well do it a bit different that is more portable:awk -F= '/^VERSION_CODENAME=/ {print $2}' /etc/os-release. Tested to work withmawkas well asgawksince Debian ships only mawk by default.The actual change needs to happen in kanidm/kanidm, but logging this here as a reminder to go do it there.