We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3013c93 commit be7e8eaCopy full SHA for be7e8ea
tests/kola/upgrade/extended/test.sh
@@ -211,6 +211,11 @@ selinux-sanity-check() {
211
paths="$(echo "${mislabeled}" | grep "Would relabel" | cut -d ' ' -f 3)"
212
found=""
213
while read -r path; do
214
+ # Add in a glob exception for /usr/etc/systemd/system for <F43 releases
215
+ # https://github.com/coreos/fedora-coreos-tracker/issues/2030#issuecomment-3329932294
216
+ if [[ "${path}" =~ /usr/etc/systemd/system ]] && [ "$(get_fedora_ver)" -eq 42 ]; then
217
+ continue
218
+ fi
219
if [[ "${exceptions[$path]:-noexception}" == 'noexception' ]]; then
220
echo "Unexpected mislabeled file found: ${path}"
221
found="1"
0 commit comments