Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

c9s: coreos-installer-generator hitting SELinux denials, breaking ISO tests #1514

Open
jlebon opened this issue May 23, 2024 · 19 comments
Open

Comments

@jlebon
Copy link
Member

jlebon commented May 23, 2024

[   19.224742] zram_generator::config[868]: No configuration found.
[   19.246283] audit: type=1400 audit(1716454944.544:4): avc:  denied  { search } for  pid=878 comm="ln" name="generator" dev="tmpfs" ino=512 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_unit_file_t:s0 tclass=dir permissive=0
[   19.246869] audit: type=1400 audit(1716454944.544:5): avc:  denied  { search } for  pid=878 comm="ln" name="generator" dev="tmpfs" ino=512 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_unit_file_t:s0 tclass=dir permissive=0
[   19.246909] ln: 
[   19.246912] failed to access '/run/systemd/generator/default.target'
[   19.246922] : Permission denied

Specifically, coreos-installer is prevented from writing to /run/systemd/generator/. The type of the generator here looks suspect. It's one of the only generator which isn't init_exec_t:

[root@cosa-devsh ~]# ls -lZ /usr/lib/systemd/system-generators/
total 7748
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0             6480248 Jan  1  1970 bootc-systemd-generator
-r-xr-xr-x. 2 root root system_u:object_r:init_exec_t:s0                4101 Jan  1  1970 coreos-boot-mount-generator
-rwxr-xr-x. 2 root root system_u:object_r:coreos_installer_exec_t:s0    1050 Jan  1  1970 coreos-installer-generator
-r-xr-xr-x. 2 root root system_u:object_r:init_exec_t:s0                2955 Jan  1  1970 coreos-liveiso-autologin-generator
-r-xr-xr-x. 2 root root system_u:object_r:init_exec_t:s0                2221 Jan  1  1970 coreos-sulogin-force-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0                 541 Jan  1  1970 kdump-dep-generator.sh
-rwxr-xr-x. 2 root root system_u:object_r:nfsd_exec_t:s0               40656 Jan  1  1970 nfs-server-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               15832 Jan  1  1970 ostree-system-generator
lrwxrwxrwx. 3 root root system_u:object_r:lib_t:s0                        31 Aug  1  2022 podman-system-generator -> ../../../libexec/podman/quadlet
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               24032 Jan  1  1970 rpc-pipefs-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0                1005 Jan  1  1970 selinux-autorelabel-generator.sh
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               15624 Jan  1  1970 systemd-bless-boot-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               40920 Jan  1  1970 systemd-cryptsetup-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               24312 Jan  1  1970 systemd-debug-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               57688 Jan  1  1970 systemd-fstab-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               24096 Jan  1  1970 systemd-getty-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               16096 Jan  1  1970 systemd-hibernate-resume-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               24240 Jan  1  1970 systemd-integritysetup-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               15624 Jan  1  1970 systemd-rc-local-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               24288 Jan  1  1970 systemd-run-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               15824 Jan  1  1970 systemd-system-update-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               36424 Jan  1  1970 systemd-sysv-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0               36864 Jan  1  1970 systemd-veritysetup-generator
-rwxr-xr-x. 2 root root system_u:object_r:init_exec_t:s0              995400 Jan  1  1970 zram-generator

This looks like a regression from fedora-selinux/selinux-policy@55e9ed8edf, i.e. fedora-selinux/selinux-policy#2111, i.e. https://issues.redhat.com/browse/RHEL-22173.

/cc @zpytela

@jlebon
Copy link
Member Author

jlebon commented May 23, 2024

Testing this temporary workaround:

diff --git a/manifest-c9s.yaml b/manifest-c9s.yaml
index 47d773e..5577278 100644
--- a/manifest-c9s.yaml
+++ b/manifest-c9s.yaml
@@ -93,6 +93,11 @@ postprocess:
      rm -f /etc/issue /etc/issue.net
      ln -s /usr/lib/issue /etc/issue
      ln -s /usr/lib/issue /etc/issue.net
+  - |
+     #!/usr/bin/env bash
+     set -xeuo pipefail
+     cd /usr/lib/systemd/system-generators
+     chcon --reference ostree-system-generator coreos-installer-generator
 
 # Packages that are only in SCOS and not in RHCOS or that have special
 # constraints that do not apply to RHCOS

@jlebon
Copy link
Member Author

jlebon commented May 23, 2024

Testing this temporary workaround:

Ahhh right, this doesn't work because we do a final relabeling at commit time.

I think let's just pin to the previous working selinux-policy package for now (selinux-policy-38.1.36).

jlebon added a commit to mike-nguyen/os that referenced this issue May 23, 2024
The latest selinux-policy breaks ISO tests:
openshift#1514

Pin to the previous working version for now.

To do this, introduce a new `overrides-c9s.yaml` manifest that we can
use going forward when we need to pin to older versions.
@jlebon
Copy link
Member Author

jlebon commented May 23, 2024

There are additional denials too on selinux-policy > 38.1.36:

Unable to create stuff in /etc:

May 23 19:14:52 localhost kernel: audit: type=1400 audit(1716491692.577:4): avc:  denied  { write } for  pid=927 comm="mkdir" name="etc" dev="loop0" ino=131 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=dir permissive=0

This comes from https://github.com/coreos/coreos-installer/blob/6cae7770dcd37f3dd69931212f46f9e7ef7518a2/scripts/coreos-installer-disable-device-auto-activation#L10.

Unable to run udevadm:

May 23 19:14:54 localhost.localdomain coreos-installer-service[1082]: /usr/libexec/coreos-installer-service: line 133: udevadm: command not found
May 23 19:14:54 localhost.localdomain kernel: audit: type=1400 audit(1716491694.014:5): avc:  denied  { getattr } for  pid=1067 comm="coreos-installe" path="/usr/bin/udevadm" dev="loop1" ino=3712 scontext=system_u:system_r:coreos_installer
_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=0
May 23 19:14:54 localhost.localdomain kernel: audit: type=1400 audit(1716491694.014:6): avc:  denied  { getattr } for  pid=1067 comm="coreos-installe" path="/usr/bin/udevadm" dev="loop1" ino=3712 scontext=system_u:system_r:coreos_installer
_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=0

This comes from https://github.com/coreos/coreos-installer/blob/6cae7770dcd37f3dd69931212f46f9e7ef7518a2/scripts/coreos-installer-service#L133.

Not sure... we could poke holes just for these though ISTM like coreos-installer should just run unconfined given that this isn't some long-running service daemon; it's an OS installer, which is naturally a very privileged thing.

Also, is there a reason for the delta between c9s and Fedora? I'm not seeing fedora-selinux/selinux-policy@55e9ed8edf there.

@zpytela
Copy link

zpytela commented May 24, 2024

coreos-installer is confined in Fedora since 1 year ago and in RHEL 9 since 9.4 https://issues.redhat.com/browse/RHEL-5164
if a new issue appears now, please file a bug

@jlebon
Copy link
Member Author

jlebon commented May 24, 2024

coreos-installer is confined in Fedora since 1 year ago and in RHEL 9 since 9.4 issues.redhat.com/browse/RHEL-5164

To clarify, when I say "delta", I'm referring specifically to fedora-selinux/selinux-policy@55e9ed8edf. E.g. comparing the c9s and rawhide branches of the selinux-policy repo:

$ git diff origin/rawhide origin/c9s -- policy/modules/contrib/coreos_installer.*
diff --git a/policy/modules/contrib/coreos_installer.te b/policy/modules/contrib/coreos_installer.te
index d6c3a808e..ab720fa88 100644
--- a/policy/modules/contrib/coreos_installer.te
+++ b/policy/modules/contrib/coreos_installer.te
@@ -12,8 +12,6 @@ init_daemon_domain(coreos_installer_t, coreos_installer_exec_t)
 type coreos_installer_unit_file_t;
 systemd_unit_file(coreos_installer_unit_file_t)

-permissive coreos_installer_t;
-
 ########################################
 #
 # coreos_installer local policy

Is that expected?

if a new issue appears now, please file a bug

https://issues.redhat.com/browse/RHEL-38614

@zpytela
Copy link

zpytela commented May 24, 2024

All changes are almost always put to Fedora first. Since the last rebase, these branches have separate development.
For RHEL 9, I can confirm it as this:

commit 9caf659df2c829beceadcd41e446cb58f5770021
Author: Zdenek Pytela <zpytela@redhat.com>
Date:   Tue Nov 22 10:46:45 2022 +0100

    * Mon Nov 21 2022 Zdenek Pytela <zpytela@redhat.com> - 38.1.1-1
    - Rebase selinux-policy to the latest one in rawhide
    Resolves: rhbz#2082524

mike-nguyen pushed a commit to mike-nguyen/os that referenced this issue May 28, 2024
The latest selinux-policy breaks ISO tests:
openshift#1514

Pin to the previous working version for now.

To do this, introduce a new `overrides-c9s.yaml` manifest that we can
use going forward when we need to pin to older versions.

(cherry picked from commit 455ea2a)
@HuijingHei
Copy link
Contributor

Have the same confusion, we remove coreos_installer_t permissive domain on c9s, not on rawhide, should we have the change on rawhide first?

@HuijingHei
Copy link
Contributor

Sorry that I did some testing before based on https://issues.redhat.com/browse/COS-2227, thought that work well with the change as the kola testiso tests passed, realized that was expected as it was the permissive mode, if remove permissive mode, then a lot of things broken, will collect the denied logs and put it in https://issues.redhat.com/browse/RHEL-38614

@HuijingHei
Copy link
Contributor

HuijingHei commented May 29, 2024

There is restriction for characters in jira, so put all the coreos_installer_t denied logs here (from fcos with selinux-policy-40.20-1.fc41.noarch (fedora-rawhide), which might be the same as c9s).

coreos_installer_t denied logs
$ grep "avc.*coreos_installer_t" kola-testiso/pxe-offline-install.bios/journal.txt

May 28 14:09:21 localhost.localdomain kernel: audit: type=1400 audit(1716905360.743:4): avc:  denied  { map_read map_write } for  pid=1045 comm="coreos-installe" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:init_t:s0 tclass=bpf permissive=1
May 28 14:09:21 localhost.localdomain kernel: audit: type=1400 audit(1716905360.922:9): avc:  denied  { search } for  pid=1078 comm="ln" name="generator" dev="tmpfs" ino=595 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_unit_file_t:s0 tclass=dir permissive=1
May 28 14:09:21 localhost.localdomain kernel: audit: type=1400 audit(1716905360.926:10): avc:  denied  { write } for  pid=1078 comm="ln" name="generator" dev="tmpfs" ino=595 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_unit_file_t:s0 tclass=dir permissive=1
May 28 14:09:21 localhost.localdomain kernel: audit: type=1400 audit(1716905360.926:11): avc:  denied  { add_name } for  pid=1078 comm="ln" name="default.target" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_unit_file_t:s0 tclass=dir permissive=1
May 28 14:09:22 localhost.localdomain audit[1131]: AVC avc:  denied  { write } for  pid=1131 comm="mkdir" name="etc" dev="loop0" ino=131 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=dir permissive=1
May 28 14:09:22 localhost.localdomain audit[1131]: AVC avc:  denied  { add_name } for  pid=1131 comm="mkdir" name="mdadm.conf.d" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=dir permissive=1
May 28 14:09:22 localhost.localdomain audit[1131]: AVC avc:  denied  { create } for  pid=1131 comm="mkdir" name="mdadm.conf.d" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=dir permissive=1
May 28 14:09:22 localhost.localdomain audit[1132]: AVC avc:  denied  { create } for  pid=1132 comm="coreos-installe" name="coreos-installer.conf" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=file permissive=1
May 28 14:09:22 localhost.localdomain audit[1132]: AVC avc:  denied  { write } for  pid=1132 comm="coreos-installe" path="/etc/mdadm.conf.d/coreos-installer.conf" dev="loop0" ino=1097665 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=file permissive=1
May 28 14:09:22 localhost.localdomain audit[1133]: AVC avc:  denied  { search } for  pid=1133 comm="grep" name="lvm" dev="loop0" ino=2228406 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_etc_t:s0 tclass=dir permissive=1
May 28 14:09:22 localhost.localdomain audit[1133]: AVC avc:  denied  { read } for  pid=1133 comm="grep" name="lvm.conf" dev="loop0" ino=2228409 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_etc_t:s0 tclass=file permissive=1
May 28 14:09:22 localhost.localdomain audit[1133]: AVC avc:  denied  { open } for  pid=1133 comm="grep" path="/etc/lvm/lvm.conf" dev="loop0" ino=2228409 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_etc_t:s0 tclass=file permissive=1
May 28 14:09:22 localhost.localdomain audit[1133]: AVC avc:  denied  { getattr } for  pid=1133 comm="grep" path="/etc/lvm/lvm.conf" dev="loop0" ino=2228409 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_etc_t:s0 tclass=file permissive=1
May 28 14:09:22 localhost.localdomain audit[1135]: AVC avc:  denied  { append } for  pid=1135 comm="coreos-installe" name="lvm.conf" dev="loop0" ino=2228409 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_etc_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1306]: AVC avc:  denied  { getattr } for  pid=1306 comm="coreos-installe" path="/usr/bin/udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain kernel: audit: type=1400 audit(1716905365.888:85): avc:  denied  { getattr } for  pid=1306 comm="coreos-installe" path="/usr/bin/udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1306]: AVC avc:  denied  { execute } for  pid=1306 comm="coreos-installe" name="udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1306]: AVC avc:  denied  { read } for  pid=1306 comm="coreos-installe" name="udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain kernel: audit: type=1400 audit(1716905365.889:86): avc:  denied  { execute } for  pid=1306 comm="coreos-installe" name="udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain kernel: audit: type=1400 audit(1716905365.889:87): avc:  denied  { read } for  pid=1306 comm="coreos-installe" name="udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { open } for  pid=1328 comm="coreos-installe" path="/usr/bin/udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { execute_no_trans } for  pid=1328 comm="coreos-installe" path="/usr/bin/udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { map } for  pid=1328 comm="udevadm" path="/usr/bin/udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { create } for  pid=1328 comm="udevadm" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:coreos_installer_t:s0 tclass=unix_dgram_socket permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { getopt } for  pid=1328 comm="udevadm" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:coreos_installer_t:s0 tclass=unix_dgram_socket permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { setopt } for  pid=1328 comm="udevadm" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:coreos_installer_t:s0 tclass=unix_dgram_socket permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { connect } for  pid=1328 comm="udevadm" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:coreos_installer_t:s0 tclass=unix_dgram_socket permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { write } for  pid=1328 comm="udevadm" name="socket" dev="tmpfs" ino=62 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:syslogd_var_run_t:s0 tclass=sock_file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { sendto } for  pid=1328 comm="udevadm" path="/systemd/journal/socket" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=unix_dgram_socket permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { map } for  pid=1328 comm="udevadm" path="/sys/fs/selinux/status" dev="selinuxfs" ino=19 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:security_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { search } for  pid=1328 comm="udevadm" name="contexts" dev="loop0" ino=3147283 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:default_context_t:s0 tclass=dir permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { search } for  pid=1328 comm="udevadm" name="files" dev="loop0" ino=804 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=dir permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { read } for  pid=1328 comm="udevadm" name="file_contexts.subs_dist" dev="loop0" ino=811 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { open } for  pid=1328 comm="udevadm" path="/etc/selinux/targeted/contexts/files/file_contexts.subs_dist" dev="loop0" ino=811 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { getattr } for  pid=1328 comm="udevadm" path="/etc/selinux/targeted/contexts/files/file_contexts.subs_dist" dev="loop0" ino=811 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { map } for  pid=1328 comm="udevadm" path="/etc/selinux/targeted/contexts/files/file_contexts.bin" dev="loop0" ino=806 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { read } for  pid=1328 comm="udevadm" name="root" dev="proc" ino=341 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:init_t:s0 tclass=lnk_file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { getattr } for  pid=1328 comm="udevadm" name="/" dev="cgroup2" ino=1 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:cgroup_t:s0 tclass=filesystem permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { write } for  pid=1328 comm="udevadm" name="control" dev="tmpfs" ino=611 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=sock_file permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { connectto } for  pid=1328 comm="udevadm" path="/run/udev/control" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:udev_t:s0-s0:c0.c1023 tclass=unix_stream_socket permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { read } for  pid=1328 comm="udevadm" name="udev" dev="tmpfs" ino=64 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=dir permissive=1
May 28 14:09:25 localhost.localdomain audit[1328]: AVC avc:  denied  { watch } for  pid=1328 comm="udevadm" path="/run/udev" dev="tmpfs" ino=64 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=dir permissive=1
May 28 14:09:25 localhost.localdomain audit[1336]: AVC avc:  denied  { execute_no_trans } for  pid=1336 comm="coreos-installe" path="/usr/bin/coreos-installer" dev="loop1" ino=3693 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:coreos_installer_exec_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1336]: AVC avc:  denied  { write } for  pid=1336 comm="coreos-installe" name="/" dev="tmpfs" ino=1 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=dir permissive=1
May 28 14:09:25 localhost.localdomain audit[1336]: AVC avc:  denied  { write open } for  pid=1336 comm="coreos-installe" path=2F746D702F233132202864656C6574656429 dev="tmpfs" ino=12 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=file permissive=1
May 28 14:09:25 localhost.localdomain audit[1336]: AVC avc:  denied  { name_connect } for  pid=1336 comm="reqwest-interna" dest=35703 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ephemeral_port_t:s0 tclass=tcp_socket permissive=1
May 28 14:09:26 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="vda" dev="devtmpfs" ino=335 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fixed_disk_device_t:s0 tclass=blk_file permissive=1
May 28 14:09:26 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/dev/vda" dev="devtmpfs" ino=335 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fixed_disk_device_t:s0 tclass=blk_file permissive=1
May 28 14:09:26 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/dev/vda" dev="devtmpfs" ino=335 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fixed_disk_device_t:s0 tclass=blk_file permissive=1
May 28 14:09:26 localhost.localdomain audit[1336]: AVC avc:  denied  { ioctl } for  pid=1336 comm="coreos-installe" path="/dev/vda" dev="devtmpfs" ino=335 ioctlcmd=0x1268 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fixed_disk_device_t:s0 tclass=blk_file permissive=1
May 28 14:09:26 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="fedora-coreos-41.20240528.91.0-metal.x86_64.raw.osmet" dev="tmpfs" ino=528 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:var_run_t:s0 tclass=file permissive=1
May 28 14:09:26 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/run/coreos-installer/osmet/fedora-coreos-41.20240528.91.0-metal.x86_64.raw.osmet" dev="tmpfs" ino=528 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:var_run_t:s0 tclass=file permissive=1
May 28 14:09:26 localhost.localdomain audit[1336]: AVC avc:  denied  { write } for  pid=1336 comm="coreos-installe" name="vda" dev="devtmpfs" ino=335 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fixed_disk_device_t:s0 tclass=blk_file permissive=1
May 28 14:09:28 localhost.localdomain audit[1336]: AVC avc:  denied  { search } for  pid=1336 comm="coreos-installe" name="/" dev="loop1" ino=36496 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:unlabeled_t:s0 tclass=dir permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="07933581372c2aa0a73c51889133cc26fb83f0d422875bb14f813bf12ce76b.file" dev="loop1" ino=14657 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/07933581372c2aa0a73c51889133cc26fb83f0d422875bb14f813bf12ce76b.file" dev="loop1" ino=14657 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/07933581372c2aa0a73c51889133cc26fb83f0d422875bb14f813bf12ce76b.file" dev="loop1" ino=14657 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain kernel: audit: type=1400 audit(1716905371.897:110): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="07933581372c2aa0a73c51889133cc26fb83f0d422875bb14f813bf12ce76b.file" dev="loop1" ino=14657 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain kernel: audit: type=1400 audit(1716905371.897:110): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/07933581372c2aa0a73c51889133cc26fb83f0d422875bb14f813bf12ce76b.file" dev="loop1" ino=14657 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain kernel: audit: type=1400 audit(1716905371.898:111): avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/07933581372c2aa0a73c51889133cc26fb83f0d422875bb14f813bf12ce76b.file" dev="loop1" ino=14657 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d80a246fa7ce03caeab07aa95eac90dcebe3b65bccf484a84d2baf77404d68.file" dev="loop1" ino=3857 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdumpctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/d80a246fa7ce03caeab07aa95eac90dcebe3b65bccf484a84d2baf77404d68.file" dev="loop1" ino=3857 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdumpctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/d80a246fa7ce03caeab07aa95eac90dcebe3b65bccf484a84d2baf77404d68.file" dev="loop1" ino=3857 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdumpctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain kernel: audit: type=1400 audit(1716905371.907:112): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d80a246fa7ce03caeab07aa95eac90dcebe3b65bccf484a84d2baf77404d68.file" dev="loop1" ino=3857 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdumpctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain kernel: audit: type=1400 audit(1716905371.907:112): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/d80a246fa7ce03caeab07aa95eac90dcebe3b65bccf484a84d2baf77404d68.file" dev="loop1" ino=3857 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdumpctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="0429db1932bb91ed8bf6d1bca2fe5a0d05dd447d8caabff275ecbd99ffcb09.file" dev="loop1" ino=6302 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:semanage_store_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/0429db1932bb91ed8bf6d1bca2fe5a0d05dd447d8caabff275ecbd99ffcb09.file" dev="loop1" ino=6302 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:semanage_store_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/0429db1932bb91ed8bf6d1bca2fe5a0d05dd447d8caabff275ecbd99ffcb09.file" dev="loop1" ino=6302 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:semanage_store_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="796a3cd4f49cfda0a3ae919ae67f4ccc31ef9be6c5b4f61bf7a34eee8339f6.file" dev="loop1" ino=5017 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_cert_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/796a3cd4f49cfda0a3ae919ae67f4ccc31ef9be6c5b4f61bf7a34eee8339f6.file" dev="loop1" ino=5017 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_cert_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/00/796a3cd4f49cfda0a3ae919ae67f4ccc31ef9be6c5b4f61bf7a34eee8339f6.file" dev="loop1" ino=5017 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_cert_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="5abb8293f77c9598c0f2e1f1b1290cc80af9d951791d34692a0e1078211e43.file" dev="loop1" ino=19318 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/13/5abb8293f77c9598c0f2e1f1b1290cc80af9d951791d34692a0e1078211e43.file" dev="loop1" ino=19318 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:31 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/13/5abb8293f77c9598c0f2e1f1b1290cc80af9d951791d34692a0e1078211e43.file" dev="loop1" ino=19318 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="1bcb57732a7744ad7875dce3f07af67a4263b823e4233aced90cb76bdb7c62.file" dev="loop1" ino=5150 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:cupsd_rw_etc_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/31/1bcb57732a7744ad7875dce3f07af67a4263b823e4233aced90cb76bdb7c62.file" dev="loop1" ino=5150 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:cupsd_rw_etc_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/31/1bcb57732a7744ad7875dce3f07af67a4263b823e4233aced90cb76bdb7c62.file" dev="loop1" ino=5150 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:cupsd_rw_etc_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="5bbaaeaea1c723c70233c99b05fc611035d05ac51c41a578ef14621c2b05b4.file" dev="loop1" ino=6568 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:default_context_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/31/5bbaaeaea1c723c70233c99b05fc611035d05ac51c41a578ef14621c2b05b4.file" dev="loop1" ino=6568 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:default_context_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/31/5bbaaeaea1c723c70233c99b05fc611035d05ac51c41a578ef14621c2b05b4.file" dev="loop1" ino=6568 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:default_context_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="591b3b856606968dc77c933a21ce3bedae7dee3471ba9ebc98452ecd23d58a.file" dev="loop1" ino=4285 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:traceroute_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4d/591b3b856606968dc77c933a21ce3bedae7dee3471ba9ebc98452ecd23d58a.file" dev="loop1" ino=4285 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:traceroute_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4d/591b3b856606968dc77c933a21ce3bedae7dee3471ba9ebc98452ecd23d58a.file" dev="loop1" ino=4285 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:traceroute_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="098f33450fbc4f07533e6abf08097b03709bf78f7f45ee2ea4cb4f9c3ff758.file" dev="loop1" ino=3643 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chfn_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4d/098f33450fbc4f07533e6abf08097b03709bf78f7f45ee2ea4cb4f9c3ff758.file" dev="loop1" ino=3643 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chfn_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4d/098f33450fbc4f07533e6abf08097b03709bf78f7f45ee2ea4cb4f9c3ff758.file" dev="loop1" ino=3643 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chfn_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="4eec74b4247e26dd70bddf5ac834d1ddb1e5d33efec767a2f320f26fdb57f1.file" dev="loop1" ino=19393 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4d/4eec74b4247e26dd70bddf5ac834d1ddb1e5d33efec767a2f320f26fdb57f1.file" dev="loop1" ino=19393 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4d/4eec74b4247e26dd70bddf5ac834d1ddb1e5d33efec767a2f320f26fdb57f1.file" dev="loop1" ino=19393 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d397630868380c777b9bddb912f7bb5a7759fbe94bd15952294901fbb17de7.file" dev="loop1" ino=21687 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:useradd_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/60/d397630868380c777b9bddb912f7bb5a7759fbe94bd15952294901fbb17de7.file" dev="loop1" ino=21687 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:useradd_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/60/d397630868380c777b9bddb912f7bb5a7759fbe94bd15952294901fbb17de7.file" dev="loop1" ino=21687 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:useradd_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="99791e2465218915b1a77d6b3b987f64b91e7cfac0471b0bac29fb88f4bb9a.file" dev="loop1" ino=21552 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fsadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/76/99791e2465218915b1a77d6b3b987f64b91e7cfac0471b0bac29fb88f4bb9a.file" dev="loop1" ino=21552 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fsadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/76/99791e2465218915b1a77d6b3b987f64b91e7cfac0471b0bac29fb88f4bb9a.file" dev="loop1" ino=21552 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fsadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="25f54cffa8462f5ce5f03ff06a7daf162b1c164657f25b1c34e657c87ebe2b.file" dev="loop1" ino=21600 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootloader_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/7b/25f54cffa8462f5ce5f03ff06a7daf162b1c164657f25b1c34e657c87ebe2b.file" dev="loop1" ino=21600 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootloader_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/7b/25f54cffa8462f5ce5f03ff06a7daf162b1c164657f25b1c34e657c87ebe2b.file" dev="loop1" ino=21600 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootloader_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="006e5056b59b380f81a0371530964da0f91fee7e581e10e28b39e9aff81b74.file" dev="loop1" ino=18703 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_dep_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b2/006e5056b59b380f81a0371530964da0f91fee7e581e10e28b39e9aff81b74.file" dev="loop1" ino=18703 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_dep_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b2/006e5056b59b380f81a0371530964da0f91fee7e581e10e28b39e9aff81b74.file" dev="loop1" ino=18703 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_dep_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="39735741ef3213fb58a887698bec02324e82bafa0964f996380dd9d575972f.file" dev="loop1" ino=4267 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b2/39735741ef3213fb58a887698bec02324e82bafa0964f996380dd9d575972f.file" dev="loop1" ino=4267 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b2/39735741ef3213fb58a887698bec02324e82bafa0964f996380dd9d575972f.file" dev="loop1" ino=4267 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f81f39d4d55a59b34aca7723f3a75001fa4006fd1ae15a0bd026282dd47637.file" dev="loop1" ino=19014 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:afterburn_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b2/f81f39d4d55a59b34aca7723f3a75001fa4006fd1ae15a0bd026282dd47637.file" dev="loop1" ino=19014 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:afterburn_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b2/f81f39d4d55a59b34aca7723f3a75001fa4006fd1ae15a0bd026282dd47637.file" dev="loop1" ino=19014 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:afterburn_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b3360193b974e873695a2ea3fa319287bde749bb795cc753dde2f5cfd2975b.file" dev="loop1" ino=21758 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sulogin_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d0/b3360193b974e873695a2ea3fa319287bde749bb795cc753dde2f5cfd2975b.file" dev="loop1" ino=21758 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sulogin_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d0/b3360193b974e873695a2ea3fa319287bde749bb795cc753dde2f5cfd2975b.file" dev="loop1" ino=21758 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sulogin_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a2e86a42faab9ab11d53ac016d1de0015305d24a728a6993e769d00c40acf3.file" dev="loop1" ino=4218 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:stalld_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/e7/a2e86a42faab9ab11d53ac016d1de0015305d24a728a6993e769d00c40acf3.file" dev="loop1" ino=4218 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:stalld_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/e7/a2e86a42faab9ab11d53ac016d1de0015305d24a728a6993e769d00c40acf3.file" dev="loop1" ino=4218 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:stalld_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="80114b9f09e383c4cb20b71591965ef124aebb378ec7bbc6c608f8320fb776.file" dev="loop1" ino=19497 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_vconsole_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/23/80114b9f09e383c4cb20b71591965ef124aebb378ec7bbc6c608f8320fb776.file" dev="loop1" ino=19497 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_vconsole_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/23/80114b9f09e383c4cb20b71591965ef124aebb378ec7bbc6c608f8320fb776.file" dev="loop1" ino=19497 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_vconsole_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="8a579cbf489e9bee2f550c516b18a8cc93f7deecc39e19031dfa5a0e6bef53.file" dev="loop1" ino=19325 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:power_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/23/8a579cbf489e9bee2f550c516b18a8cc93f7deecc39e19031dfa5a0e6bef53.file" dev="loop1" ino=19325 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:power_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/23/8a579cbf489e9bee2f550c516b18a8cc93f7deecc39e19031dfa5a0e6bef53.file" dev="loop1" ino=19325 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:power_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="c8fb25c4fbbea244a8fe0c0bf34814a24ae368c68eca985a248b2a0275aa41.file" dev="loop1" ino=19184 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/23/c8fb25c4fbbea244a8fe0c0bf34814a24ae368c68eca985a248b2a0275aa41.file" dev="loop1" ino=19184 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/23/c8fb25c4fbbea244a8fe0c0bf34814a24ae368c68eca985a248b2a0275aa41.file" dev="loop1" ino=19184 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="99a6b6754f2ef84eb606128a7c4d3c25be859619cebe5bcbc657668700fab8.file" dev="loop1" ino=21631 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iscsid_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/41/99a6b6754f2ef84eb606128a7c4d3c25be859619cebe5bcbc657668700fab8.file" dev="loop1" ino=21631 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iscsid_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/41/99a6b6754f2ef84eb606128a7c4d3c25be859619cebe5bcbc657668700fab8.file" dev="loop1" ino=21631 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iscsid_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="efbdeb0e03d39cf6eb5276f4127452edc49d47ac2fb06b0bfafdb9fa80c0aa.file" dev="loop1" ino=3726 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_runtime_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/47/efbdeb0e03d39cf6eb5276f4127452edc49d47ac2fb06b0bfafdb9fa80c0aa.file" dev="loop1" ino=3726 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_runtime_exec_t:s0 tclass=file permissive=1
May 28 14:09:32 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/47/efbdeb0e03d39cf6eb5276f4127452edc49d47ac2fb06b0bfafdb9fa80c0aa.file" dev="loop1" ino=3726 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_runtime_exec_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="342e7235c1ef025c09e1545312faf0ea841d0030f470def2fe284f7bcd0483.file" dev="loop1" ino=19631 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/83/342e7235c1ef025c09e1545312faf0ea841d0030f470def2fe284f7bcd0483.file" dev="loop1" ino=19631 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/83/342e7235c1ef025c09e1545312faf0ea841d0030f470def2fe284f7bcd0483.file" dev="loop1" ino=19631 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="12cd813670b57ab6183b144f9da15f8c923ac58c306aef5bb27d92843c4e49.file" dev="loop1" ino=21707 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:admin_passwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/19/12cd813670b57ab6183b144f9da15f8c923ac58c306aef5bb27d92843c4e49.file" dev="loop1" ino=21707 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:admin_passwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/19/12cd813670b57ab6183b144f9da15f8c923ac58c306aef5bb27d92843c4e49.file" dev="loop1" ino=21707 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:admin_passwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a06aa0a2e4f63ed768685cbacbe0afb53b5e2e901b1607d83a9f58f770b4dc.file" dev="loop1" ino=19051 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:coreos_installer_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/25/a06aa0a2e4f63ed768685cbacbe0afb53b5e2e901b1607d83a9f58f770b4dc.file" dev="loop1" ino=19051 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:coreos_installer_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/25/a06aa0a2e4f63ed768685cbacbe0afb53b5e2e901b1607d83a9f58f770b4dc.file" dev="loop1" ino=19051 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:coreos_installer_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="4d20eb5d74535f7bcc08ce65525dada7c8d23bcac4b9f14f14bef5c0596c39.file" dev="loop1" ino=19280 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:getty_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/25/4d20eb5d74535f7bcc08ce65525dada7c8d23bcac4b9f14f14bef5c0596c39.file" dev="loop1" ino=19280 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:getty_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:33 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/25/4d20eb5d74535f7bcc08ce65525dada7c8d23bcac4b9f14f14bef5c0596c39.file" dev="loop1" ino=19280 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:getty_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f9c56c0ad9c23fafc371ef9076fdb1606db8df187a44f98606f5f81ad651b8.file" dev="loop1" ino=21675 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mount_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3c/f9c56c0ad9c23fafc371ef9076fdb1606db8df187a44f98606f5f81ad651b8.file" dev="loop1" ino=21675 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mount_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3c/f9c56c0ad9c23fafc371ef9076fdb1606db8df187a44f98606f5f81ad651b8.file" dev="loop1" ino=21675 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mount_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="c7fd180aec6769b0b4f90c6241d5256c15df6e1b0abd2f31141049c96f101b.file" dev="loop1" ino=19609 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rfkill_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/84/c7fd180aec6769b0b4f90c6241d5256c15df6e1b0abd2f31141049c96f101b.file" dev="loop1" ino=19609 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rfkill_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/84/c7fd180aec6769b0b4f90c6241d5256c15df6e1b0abd2f31141049c96f101b.file" dev="loop1" ino=19609 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rfkill_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="22c1740899ab444959f256cda91d8b282e2a8d4d92080c233ef7a92adaefa6.file" dev="loop1" ino=3598 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:afterburn_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b1/22c1740899ab444959f256cda91d8b282e2a8d4d92080c233ef7a92adaefa6.file" dev="loop1" ino=3598 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:afterburn_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b1/22c1740899ab444959f256cda91d8b282e2a8d4d92080c233ef7a92adaefa6.file" dev="loop1" ino=3598 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:afterburn_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="e5926aa557bd1af286f320e56e55079216b9ddd2b53199cef904751c3841b5.file" dev="loop1" ino=3760 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fusermount_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/de/e5926aa557bd1af286f320e56e55079216b9ddd2b53199cef904751c3841b5.file" dev="loop1" ino=3760 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fusermount_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/de/e5926aa557bd1af286f320e56e55079216b9ddd2b53199cef904751c3841b5.file" dev="loop1" ino=3760 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fusermount_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2c11227e8de9602e265ad6d19c374754aa83d8f514d13617f9a9d89452d087.file" dev="loop1" ino=19172 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/fc/2c11227e8de9602e265ad6d19c374754aa83d8f514d13617f9a9d89452d087.file" dev="loop1" ino=19172 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/fc/2c11227e8de9602e265ad6d19c374754aa83d8f514d13617f9a9d89452d087.file" dev="loop1" ino=19172 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2096f9b95ee96136477c13e458e400c559b51fa6597ee669935f835c03ccc4.file" dev="loop1" ino=21801 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/cd/2096f9b95ee96136477c13e458e400c559b51fa6597ee669935f835c03ccc4.file" dev="loop1" ino=21801 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/cd/2096f9b95ee96136477c13e458e400c559b51fa6597ee669935f835c03ccc4.file" dev="loop1" ino=21801 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="03065258bd36d6f3882d174ed630b9fe57f179be30ee51b00a30b90b9373b7.file" dev="loop1" ino=4228 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_systemctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0b/03065258bd36d6f3882d174ed630b9fe57f179be30ee51b00a30b90b9373b7.file" dev="loop1" ino=4228 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_systemctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0b/03065258bd36d6f3882d174ed630b9fe57f179be30ee51b00a30b90b9373b7.file" dev="loop1" ino=4228 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_systemctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="766a38ff3178f8d0516cd542685e2cfd9318974ad5e8576b1c45a315e77f20.file" dev="loop1" ino=21528 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/26/766a38ff3178f8d0516cd542685e2cfd9318974ad5e8576b1c45a315e77f20.file" dev="loop1" ino=21528 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/26/766a38ff3178f8d0516cd542685e2cfd9318974ad5e8576b1c45a315e77f20.file" dev="loop1" ino=21528 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="125620c7b71e48b5383d13f13a8100edc575e7ea6645f2c3c487edcefd7fad.file" dev="loop1" ino=19158 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iscsi_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/26/125620c7b71e48b5383d13f13a8100edc575e7ea6645f2c3c487edcefd7fad.file" dev="loop1" ino=19158 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iscsi_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/26/125620c7b71e48b5383d13f13a8100edc575e7ea6645f2c3c487edcefd7fad.file" dev="loop1" ino=19158 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iscsi_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="09a75bb87e593ce568b3b65c95788d9cfbaa919b2c95367a6031f1bafb3a06.file" dev="loop1" ino=21400 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_keysign_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3f/09a75bb87e593ce568b3b65c95788d9cfbaa919b2c95367a6031f1bafb3a06.file" dev="loop1" ino=21400 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_keysign_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3f/09a75bb87e593ce568b3b65c95788d9cfbaa919b2c95367a6031f1bafb3a06.file" dev="loop1" ino=21400 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_keysign_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="863887efb6c2f5a3e7d97b1945d5553c4ce66b038914468ce5d0a492308116.file" dev="loop1" ino=3602 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:netutils_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5b/863887efb6c2f5a3e7d97b1945d5553c4ce66b038914468ce5d0a492308116.file" dev="loop1" ino=3602 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:netutils_exec_t:s0 tclass=file permissive=1
May 28 14:09:34 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5b/863887efb6c2f5a3e7d97b1945d5553c4ce66b038914468ce5d0a492308116.file" dev="loop1" ino=3602 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:netutils_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="38206322fa91c81b1bf1611c16a7d4b7aa6601e9d61758073f6c593e545894.file" dev="loop1" ino=21642 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:logrotate_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/72/38206322fa91c81b1bf1611c16a7d4b7aa6601e9d61758073f6c593e545894.file" dev="loop1" ino=21642 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:logrotate_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/72/38206322fa91c81b1bf1611c16a7d4b7aa6601e9d61758073f6c593e545894.file" dev="loop1" ino=21642 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:logrotate_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="9e5993bf2cff40e2e5b988863322451955a8bfcfdedae861e2dabbd787a048.file" dev="loop1" ino=18989 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_conf_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8a/9e5993bf2cff40e2e5b988863322451955a8bfcfdedae861e2dabbd787a048.file" dev="loop1" ino=18989 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_conf_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8a/9e5993bf2cff40e2e5b988863322451955a8bfcfdedae861e2dabbd787a048.file" dev="loop1" ino=18989 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_conf_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="3c99eccbd60e1aa29d3748d804a61860844abd1e9cbfe73dc05746bc0dd0a1.file" dev="loop1" ino=4058 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpm_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bb/3c99eccbd60e1aa29d3748d804a61860844abd1e9cbfe73dc05746bc0dd0a1.file" dev="loop1" ino=4058 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpm_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bb/3c99eccbd60e1aa29d3748d804a61860844abd1e9cbfe73dc05746bc0dd0a1.file" dev="loop1" ino=4058 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpm_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="c68055e72cfdc8f4d27084f549d6c41b057ce7662956a5945a31e0b91daf5f.file" dev="loop1" ino=21296 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1a/c68055e72cfdc8f4d27084f549d6c41b057ce7662956a5945a31e0b91daf5f.file" dev="loop1" ino=21296 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1a/c68055e72cfdc8f4d27084f549d6c41b057ce7662956a5945a31e0b91daf5f.file" dev="loop1" ino=21296 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="0ea0d980eac7c08987e98630572b795fd02578943c83b654584e0ee110b585.file" dev="loop1" ino=21471 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:utempter_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/44/0ea0d980eac7c08987e98630572b795fd02578943c83b654584e0ee110b585.file" dev="loop1" ino=21471 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:utempter_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/44/0ea0d980eac7c08987e98630572b795fd02578943c83b654584e0ee110b585.file" dev="loop1" ino=21471 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:utempter_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="c4364e591f71f0ba947e1e37283bce0d33deeae3a131a600b07aac2a901df6.file" dev="loop1" ino=19105 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/7e/c4364e591f71f0ba947e1e37283bce0d33deeae3a131a600b07aac2a901df6.file" dev="loop1" ino=19105 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/7e/c4364e591f71f0ba947e1e37283bce0d33deeae3a131a600b07aac2a901df6.file" dev="loop1" ino=19105 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="38c470a475c76fd8a1277ef7964fe5fe9861183a4168ed012022e9837d6a4f.file" dev="loop1" ino=19611 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sleep_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f5/38c470a475c76fd8a1277ef7964fe5fe9861183a4168ed012022e9837d6a4f.file" dev="loop1" ino=19611 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sleep_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f5/38c470a475c76fd8a1277ef7964fe5fe9861183a4168ed012022e9837d6a4f.file" dev="loop1" ino=19611 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sleep_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="c2832941e4f3f3f3707cb46fed5e8c6b6188713b213d62d98e2c72030d5284.file" dev="loop1" ino=19085 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/fe/c2832941e4f3f3f3707cb46fed5e8c6b6188713b213d62d98e2c72030d5284.file" dev="loop1" ino=19085 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/fe/c2832941e4f3f3f3707cb46fed5e8c6b6188713b213d62d98e2c72030d5284.file" dev="loop1" ino=19085 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="8c7ee793c0c9101ab2d507e0cbc5ce426afd76a43cbc17b071e40fd0c6728c.file" dev="loop1" ino=4243 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/11/8c7ee793c0c9101ab2d507e0cbc5ce426afd76a43cbc17b071e40fd0c6728c.file" dev="loop1" ino=4243 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/11/8c7ee793c0c9101ab2d507e0cbc5ce426afd76a43cbc17b071e40fd0c6728c.file" dev="loop1" ino=4243 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2ca571fc5e910fce15c6570b7517f63988ab42985af2aa7cc725ebf5fbfcfc.file" dev="loop1" ino=4627 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_etc_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/11/2ca571fc5e910fce15c6570b7517f63988ab42985af2aa7cc725ebf5fbfcfc.file" dev="loop1" ino=4627 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_etc_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/11/2ca571fc5e910fce15c6570b7517f63988ab42985af2aa7cc725ebf5fbfcfc.file" dev="loop1" ino=4627 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_etc_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="0185fb3b420082beca5292aa09a1f26d8a24b2ac027215496b2ee5fcd66114.file" dev="loop1" ino=21617 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ifconfig_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5c/0185fb3b420082beca5292aa09a1f26d8a24b2ac027215496b2ee5fcd66114.file" dev="loop1" ino=21617 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ifconfig_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5c/0185fb3b420082beca5292aa09a1f26d8a24b2ac027215496b2ee5fcd66114.file" dev="loop1" ino=21617 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ifconfig_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="412e9e192ccf7dd2599238b2b5504d5673b89e32425d96f411d40ba624bdba.file" dev="loop1" ino=19148 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/af/412e9e192ccf7dd2599238b2b5504d5673b89e32425d96f411d40ba624bdba.file" dev="loop1" ino=19148 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/af/412e9e192ccf7dd2599238b2b5504d5673b89e32425d96f411d40ba624bdba.file" dev="loop1" ino=19148 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="603c2cc4831290bd418e839262e09b0622578a7021af9ca45a053f19a55bfd.file" dev="loop1" ino=19025 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bluetooth_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/af/603c2cc4831290bd418e839262e09b0622578a7021af9ca45a053f19a55bfd.file" dev="loop1" ino=19025 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bluetooth_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/af/603c2cc4831290bd418e839262e09b0622578a7021af9ca45a053f19a55bfd.file" dev="loop1" ino=19025 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bluetooth_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="9ddc0ecc57a03d62e5c85e3802211dbe1214344285a65625cbf5c9c6042586.file" dev="loop1" ino=4325 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:vlock_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/e4/9ddc0ecc57a03d62e5c85e3802211dbe1214344285a65625cbf5c9c6042586.file" dev="loop1" ino=4325 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:vlock_exec_t:s0 tclass=file permissive=1
May 28 14:09:35 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/e4/9ddc0ecc57a03d62e5c85e3802211dbe1214344285a65625cbf5c9c6042586.file" dev="loop1" ino=4325 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:vlock_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f62fbb437ed7a25b38218257730234f5b25c3dabba400713aac0f304e40653.file" dev="loop1" ino=19543 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rc_local_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/e4/f62fbb437ed7a25b38218257730234f5b25c3dabba400713aac0f304e40653.file" dev="loop1" ino=19543 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rc_local_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/e4/f62fbb437ed7a25b38218257730234f5b25c3dabba400713aac0f304e40653.file" dev="loop1" ino=19543 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rc_local_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b311d4df71e3909047578b27abbc26c206f984df2735cc0f94785fc20e6e3c.file" dev="loop1" ino=19160 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f9/b311d4df71e3909047578b27abbc26c206f984df2735cc0f94785fc20e6e3c.file" dev="loop1" ino=19160 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f9/b311d4df71e3909047578b27abbc26c206f984df2735cc0f94785fc20e6e3c.file" dev="loop1" ino=19160 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a1ca839d4246e6f17911d5f9f6872274806571b41b57d91a48b3198ef00d0f.file" dev="loop1" ino=19546 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sysv_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/15/a1ca839d4246e6f17911d5f9f6872274806571b41b57d91a48b3198ef00d0f.file" dev="loop1" ino=19546 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sysv_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/15/a1ca839d4246e6f17911d5f9f6872274806571b41b57d91a48b3198ef00d0f.file" dev="loop1" ino=19546 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sysv_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="4d0e9374005ca03111d45df39169a1dd67a5c7f4e34f0bd4c10c0875e4eded.file" dev="loop1" ino=19205 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:nfsd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1b/4d0e9374005ca03111d45df39169a1dd67a5c7f4e34f0bd4c10c0875e4eded.file" dev="loop1" ino=19205 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:nfsd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1b/4d0e9374005ca03111d45df39169a1dd67a5c7f4e34f0bd4c10c0875e4eded.file" dev="loop1" ino=19205 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:nfsd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b0b5424311fd58dc20d07053a5555578a850714b7d2a2b98771e538eb27f45.file" dev="loop1" ino=19253 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a9/b0b5424311fd58dc20d07053a5555578a850714b7d2a2b98771e538eb27f45.file" dev="loop1" ino=19253 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a9/b0b5424311fd58dc20d07053a5555578a850714b7d2a2b98771e538eb27f45.file" dev="loop1" ino=19253 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="67492134ea74ac87615c26472d0b701a8d87007b3224f8d158662a57b051b4.file" dev="loop1" ino=3706 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ca/67492134ea74ac87615c26472d0b701a8d87007b3224f8d158662a57b051b4.file" dev="loop1" ino=3706 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ca/67492134ea74ac87615c26472d0b701a8d87007b3224f8d158662a57b051b4.file" dev="loop1" ino=3706 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="6d6ceb677d05364db286ffd38d9ffebdb4fa6a4eaeee8988c849f36f653029.file" dev="loop1" ino=19208 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ff/6d6ceb677d05364db286ffd38d9ffebdb4fa6a4eaeee8988c849f36f653029.file" dev="loop1" ino=19208 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ff/6d6ceb677d05364db286ffd38d9ffebdb4fa6a4eaeee8988c849f36f653029.file" dev="loop1" ino=19208 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="65d339ccab6bb10548b10f346291f71d37514bfb4308765ca83860440d93a1.file" dev="loop1" ino=21457 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ff/65d339ccab6bb10548b10f346291f71d37514bfb4308765ca83860440d93a1.file" dev="loop1" ino=21457 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ff/65d339ccab6bb10548b10f346291f71d37514bfb4308765ca83860440d93a1.file" dev="loop1" ino=21457 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a3e0848c453178e5ed9d6d25c6398b67fced5ee1f38c5c434510c135f4d56a.file" dev="loop1" ino=22799 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_db_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0e/a3e0848c453178e5ed9d6d25c6398b67fced5ee1f38c5c434510c135f4d56a.file" dev="loop1" ino=22799 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_db_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0e/a3e0848c453178e5ed9d6d25c6398b67fced5ee1f38c5c434510c135f4d56a.file" dev="loop1" ino=22799 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_db_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b6146856e02efc887306b856f7035e192e270c274344dc9fec01f162e6c28d.file" dev="loop1" ino=21450 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_selinux_manager_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/12/b6146856e02efc887306b856f7035e192e270c274344dc9fec01f162e6c28d.file" dev="loop1" ino=21450 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_selinux_manager_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/12/b6146856e02efc887306b856f7035e192e270c274344dc9fec01f162e6c28d.file" dev="loop1" ino=21450 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_selinux_manager_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2921243742c637c5f63eca2dba7586131568f08b706822f4ff97e753eda77c.file" dev="loop1" ino=21636 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:keyutils_dns_resolver_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/64/2921243742c637c5f63eca2dba7586131568f08b706822f4ff97e753eda77c.file" dev="loop1" ino=21636 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:keyutils_dns_resolver_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/64/2921243742c637c5f63eca2dba7586131568f08b706822f4ff97e753eda77c.file" dev="loop1" ino=21636 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:keyutils_dns_resolver_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="7a0e3023bc94b65bef28fb46de4cd7013e76c09dcaf3e0198037c24ca5dc70.file" dev="loop1" ino=4056 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcbind_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/97/7a0e3023bc94b65bef28fb46de4cd7013e76c09dcaf3e0198037c24ca5dc70.file" dev="loop1" ino=4056 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcbind_exec_t:s0 tclass=file permissive=1
May 28 14:09:36 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/97/7a0e3023bc94b65bef28fb46de4cd7013e76c09dcaf3e0198037c24ca5dc70.file" dev="loop1" ino=4056 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcbind_exec_t:s0 tclass=file permissive=1
May 28 14:09:37 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2373f9ce77b3190f66d8ad4f8b23e3c3140bb407e9f795196023a8c4375cdc.file" dev="loop1" ino=21708 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:37 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/fb/2373f9ce77b3190f66d8ad4f8b23e3c3140bb407e9f795196023a8c4375cdc.file" dev="loop1" ino=21708 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:37 localhost.localdomain kernel: audit: type=1400 audit(1716905377.698:238): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2373f9ce77b3190f66d8ad4f8b23e3c3140bb407e9f795196023a8c4375cdc.file" dev="loop1" ino=21708 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:37 localhost.localdomain kernel: audit: type=1400 audit(1716905377.698:238): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/fb/2373f9ce77b3190f66d8ad4f8b23e3c3140bb407e9f795196023a8c4375cdc.file" dev="loop1" ino=21708 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:37 localhost.localdomain kernel: audit: type=1400 audit(1716905377.698:239): avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/fb/2373f9ce77b3190f66d8ad4f8b23e3c3140bb407e9f795196023a8c4375cdc.file" dev="loop1" ino=21708 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:37 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/fb/2373f9ce77b3190f66d8ad4f8b23e3c3140bb407e9f795196023a8c4375cdc.file" dev="loop1" ino=21708 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="ecfa2a0a783e42cef94c482e9477bdc4bf7e613213d7d18b07ba1a227462c7.file" dev="loop1" ino=19615 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sysctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/13/ecfa2a0a783e42cef94c482e9477bdc4bf7e613213d7d18b07ba1a227462c7.file" dev="loop1" ino=19615 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sysctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/13/ecfa2a0a783e42cef94c482e9477bdc4bf7e613213d7d18b07ba1a227462c7.file" dev="loop1" ino=19615 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sysctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain kernel: audit: type=1400 audit(1716905378.408:241): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="ecfa2a0a783e42cef94c482e9477bdc4bf7e613213d7d18b07ba1a227462c7.file" dev="loop1" ino=19615 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sysctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain kernel: audit: type=1400 audit(1716905378.408:241): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/13/ecfa2a0a783e42cef94c482e9477bdc4bf7e613213d7d18b07ba1a227462c7.file" dev="loop1" ino=19615 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_sysctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="e595450f20df761905bddd0676bb8c1e8740569851ee92ebed65b77affe4cf.file" dev="loop1" ino=4258 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_tmpfiles_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/51/e595450f20df761905bddd0676bb8c1e8740569851ee92ebed65b77affe4cf.file" dev="loop1" ino=4258 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_tmpfiles_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/51/e595450f20df761905bddd0676bb8c1e8740569851ee92ebed65b77affe4cf.file" dev="loop1" ino=4258 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_tmpfiles_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="821be781f93c73a43c5483f2a1cccce49b076352ac5102535c2e766851f99d.file" dev="loop1" ino=21543 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/98/821be781f93c73a43c5483f2a1cccce49b076352ac5102535c2e766851f99d.file" dev="loop1" ino=21543 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/98/821be781f93c73a43c5483f2a1cccce49b076352ac5102535c2e766851f99d.file" dev="loop1" ino=21543 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:lvm_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="6b7973f9bc124e6aca7604f705565bde198ca385a8dd372bebaf41c499a139.file" dev="loop1" ino=21482 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:getty_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b2/6b7973f9bc124e6aca7604f705565bde198ca385a8dd372bebaf41c499a139.file" dev="loop1" ino=21482 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:getty_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b2/6b7973f9bc124e6aca7604f705565bde198ca385a8dd372bebaf41c499a139.file" dev="loop1" ino=21482 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:getty_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="ccd82f0ac4eec7d3dc89aaaf22e5365d0fe9df0b90b2d4cd680ec09cba2660.file" dev="loop1" ino=19602 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_pstore_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d0/ccd82f0ac4eec7d3dc89aaaf22e5365d0fe9df0b90b2d4cd680ec09cba2660.file" dev="loop1" ino=19602 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_pstore_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d0/ccd82f0ac4eec7d3dc89aaaf22e5365d0fe9df0b90b2d4cd680ec09cba2660.file" dev="loop1" ino=19602 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_pstore_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d3b05eb4e5a1c5c2d0e23816c30da5d24c2b426ef6012c108eb72db5fd96db.file" dev="loop1" ino=18883 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpmdb_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d0/d3b05eb4e5a1c5c2d0e23816c30da5d24c2b426ef6012c108eb72db5fd96db.file" dev="loop1" ino=18883 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpmdb_exec_t:s0 tclass=file permissive=1
May 28 14:09:38 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d0/d3b05eb4e5a1c5c2d0e23816c30da5d24c2b426ef6012c108eb72db5fd96db.file" dev="loop1" ino=18883 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpmdb_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="199ffd54f950267cd3b0fdbaf48dae5a0e1d7d9494a90e33906c0284344839.file" dev="loop1" ino=3686 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:conmon_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f1/199ffd54f950267cd3b0fdbaf48dae5a0e1d7d9494a90e33906c0284344839.file" dev="loop1" ino=3686 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:conmon_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f1/199ffd54f950267cd3b0fdbaf48dae5a0e1d7d9494a90e33906c0284344839.file" dev="loop1" ino=3686 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:conmon_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="475a76fb83b8c4ab6ac6cce864679749dff87f6578d148fffee2629f309489.file" dev="loop1" ino=21749 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:showmount_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ae/475a76fb83b8c4ab6ac6cce864679749dff87f6578d148fffee2629f309489.file" dev="loop1" ino=21749 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:showmount_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ae/475a76fb83b8c4ab6ac6cce864679749dff87f6578d148fffee2629f309489.file" dev="loop1" ino=21749 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:showmount_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="3fadf6f25a4c2593faf50e63c90701d8399c019078646e260f081504fdf58c.file" dev="loop1" ino=4059 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:install_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/2f/3fadf6f25a4c2593faf50e63c90701d8399c019078646e260f081504fdf58c.file" dev="loop1" ino=4059 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:install_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/2f/3fadf6f25a4c2593faf50e63c90701d8399c019078646e260f081504fdf58c.file" dev="loop1" ino=4059 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:install_exec_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="cf5a265fd90b12de050923cf827b0adafc621bac630373fec8db21624bd3bc.file" dev="loop1" ino=4395 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_aliases_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/47/cf5a265fd90b12de050923cf827b0adafc621bac630373fec8db21624bd3bc.file" dev="loop1" ino=4395 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_aliases_t:s0 tclass=file permissive=1
May 28 14:09:39 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/47/cf5a265fd90b12de050923cf827b0adafc621bac630373fec8db21624bd3bc.file" dev="loop1" ino=4395 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_aliases_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="cbf112c6ffc8e01c8ea89608b6ca500cbed492aa9d564a8f30b29eb3183a13.file" dev="loop1" ino=19591 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_localed_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8e/cbf112c6ffc8e01c8ea89608b6ca500cbed492aa9d564a8f30b29eb3183a13.file" dev="loop1" ino=19591 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_localed_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8e/cbf112c6ffc8e01c8ea89608b6ca500cbed492aa9d564a8f30b29eb3183a13.file" dev="loop1" ino=19591 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_localed_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="4dd616de3fe7c941d8d5494df7b0a01c8aecfe5b41adaac752c11b48fd3542.file" dev="loop1" ino=19031 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bd/4dd616de3fe7c941d8d5494df7b0a01c8aecfe5b41adaac752c11b48fd3542.file" dev="loop1" ino=19031 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bd/4dd616de3fe7c941d8d5494df7b0a01c8aecfe5b41adaac752c11b48fd3542.file" dev="loop1" ino=19031 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="37ca38fb0d740a62288e473e140a4eb22554e0d9a1331497a9cc1c963d112a.file" dev="loop1" ino=3862 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kmod_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/c2/37ca38fb0d740a62288e473e140a4eb22554e0d9a1331497a9cc1c963d112a.file" dev="loop1" ino=3862 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kmod_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/c2/37ca38fb0d740a62288e473e140a4eb22554e0d9a1331497a9cc1c963d112a.file" dev="loop1" ino=3862 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kmod_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f1ea080f6039f812efbd811bd4730a5f69040055425f87903bd42b906b4681.file" dev="loop1" ino=21746 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:setsebool_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/c2/f1ea080f6039f812efbd811bd4730a5f69040055425f87903bd42b906b4681.file" dev="loop1" ino=21746 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:setsebool_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/c2/f1ea080f6039f812efbd811bd4730a5f69040055425f87903bd42b906b4681.file" dev="loop1" ino=21746 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:setsebool_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="50e0f79a31b089b5c7364a97f3357d1aacc0696fe2177bf7ef3fbfbc14e8f7.file" dev="loop1" ino=19458 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_resolved_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b4/50e0f79a31b089b5c7364a97f3357d1aacc0696fe2177bf7ef3fbfbc14e8f7.file" dev="loop1" ino=19458 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_resolved_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b4/50e0f79a31b089b5c7364a97f3357d1aacc0696fe2177bf7ef3fbfbc14e8f7.file" dev="loop1" ino=19458 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_resolved_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2c125660dc72b83cb16b38029eacf946b98f7a3ea008f445112a6517ac6755.file" dev="loop1" ino=19084 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b4/2c125660dc72b83cb16b38029eacf946b98f7a3ea008f445112a6517ac6755.file" dev="loop1" ino=19084 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b4/2c125660dc72b83cb16b38029eacf946b98f7a3ea008f445112a6517ac6755.file" dev="loop1" ino=19084 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="39c69caa7cb779e30b8c56ef83cf2934b243fbfb2d07526dddeaa3a2c0afe0.file" dev="loop1" ino=3649 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyc_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/10/39c69caa7cb779e30b8c56ef83cf2934b243fbfb2d07526dddeaa3a2c0afe0.file" dev="loop1" ino=3649 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyc_exec_t:s0 tclass=file permissive=1
May 28 14:09:40 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/10/39c69caa7cb779e30b8c56ef83cf2934b243fbfb2d07526dddeaa3a2c0afe0.file" dev="loop1" ino=3649 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyc_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="37394502822d526b3ae7e2f2f9941468b84e9431ec7c419fa1398ff8bc8ac8.file" dev="loop1" ino=21519 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:passwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/93/37394502822d526b3ae7e2f2f9941468b84e9431ec7c419fa1398ff8bc8ac8.file" dev="loop1" ino=21519 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:passwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/93/37394502822d526b3ae7e2f2f9941468b84e9431ec7c419fa1398ff8bc8ac8.file" dev="loop1" ino=21519 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:passwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="7689e90297de9cdc09f14a529105ac1e458c6824bc97c10746c81b6edf8434.file" dev="loop1" ino=3720 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dmesg_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ad/7689e90297de9cdc09f14a529105ac1e458c6824bc97c10746c81b6edf8434.file" dev="loop1" ino=3720 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dmesg_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ad/7689e90297de9cdc09f14a529105ac1e458c6824bc97c10746c81b6edf8434.file" dev="loop1" ino=3720 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dmesg_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="84e81a19ca131343c7ed2097a81a6d01168f9db9ad30d092a1aced81d4a1b6.file" dev="loop1" ino=19322 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:stalld_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b7/84e81a19ca131343c7ed2097a81a6d01168f9db9ad30d092a1aced81d4a1b6.file" dev="loop1" ino=19322 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:stalld_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b7/84e81a19ca131343c7ed2097a81a6d01168f9db9ad30d092a1aced81d4a1b6.file" dev="loop1" ino=19322 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:stalld_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="6d6621e6dc82cd2cea6c11fdcaa8a1788484e05bae207fe5c71e66b5f2c414.file" dev="loop1" ino=21741 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:semanage_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/02/6d6621e6dc82cd2cea6c11fdcaa8a1788484e05bae207fe5c71e66b5f2c414.file" dev="loop1" ino=21741 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:semanage_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/02/6d6621e6dc82cd2cea6c11fdcaa8a1788484e05bae207fe5c71e66b5f2c414.file" dev="loop1" ino=21741 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:semanage_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="4e8010e52a485689352be412afc111387cea860b4058e2db56c999aa37a53b.file" dev="loop1" ino=19590 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:syslogd_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/17/4e8010e52a485689352be412afc111387cea860b4058e2db56c999aa37a53b.file" dev="loop1" ino=19590 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:syslogd_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/17/4e8010e52a485689352be412afc111387cea860b4058e2db56c999aa37a53b.file" dev="loop1" ino=19590 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:syslogd_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="5752ef5e28ccf2aabf94736e953014e68baf5e028347bdb8cae33f06c8e22b.file" dev="loop1" ino=19496 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_userdbd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/17/5752ef5e28ccf2aabf94736e953014e68baf5e028347bdb8cae33f06c8e22b.file" dev="loop1" ino=19496 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_userdbd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/17/5752ef5e28ccf2aabf94736e953014e68baf5e028347bdb8cae33f06c8e22b.file" dev="loop1" ino=19496 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_userdbd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="cfab294e1b0f1398f7c14a0ddf7abdea1657a810e2fe809f0d004ddee4304c.file" dev="loop1" ino=19618 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_timedated_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/34/cfab294e1b0f1398f7c14a0ddf7abdea1657a810e2fe809f0d004ddee4304c.file" dev="loop1" ino=19618 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_timedated_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/34/cfab294e1b0f1398f7c14a0ddf7abdea1657a810e2fe809f0d004ddee4304c.file" dev="loop1" ino=19618 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_timedated_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="4c25e9b9e5739e5624477dfc8e4c1eabd211055e3bc48b30b3a49dea7a5663.file" dev="loop1" ino=19307 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4f/4c25e9b9e5739e5624477dfc8e4c1eabd211055e3bc48b30b3a49dea7a5663.file" dev="loop1" ino=19307 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4f/4c25e9b9e5739e5624477dfc8e4c1eabd211055e3bc48b30b3a49dea7a5663.file" dev="loop1" ino=19307 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="5232d7adb1adf354dc1f8cdcfa367a1009536a78f8739b86ec0c8df0471fd3.file" dev="loop1" ino=18735 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:policykit_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4f/5232d7adb1adf354dc1f8cdcfa367a1009536a78f8739b86ec0c8df0471fd3.file" dev="loop1" ino=18735 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:policykit_exec_t:s0 tclass=file permissive=1
May 28 14:09:41 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/4f/5232d7adb1adf354dc1f8cdcfa367a1009536a78f8739b86ec0c8df0471fd3.file" dev="loop1" ino=18735 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:policykit_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="cbcd1b1d8c7c19a066900de3a90ae76ad7c54340a2ef9b2648f6b0524a12f1.file" dev="loop1" ino=9101 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_chronyc_script_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/7f/cbcd1b1d8c7c19a066900de3a90ae76ad7c54340a2ef9b2648f6b0524a12f1.file" dev="loop1" ino=9101 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_chronyc_script_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/7f/cbcd1b1d8c7c19a066900de3a90ae76ad7c54340a2ef9b2648f6b0524a12f1.file" dev="loop1" ino=9101 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_chronyc_script_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="53f3fd0590cead4bc0c59ed6c0bf98e3dc57b9e09077903e71ca735ce23493.file" dev="loop1" ino=19535 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:selinux_autorelabel_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/7f/53f3fd0590cead4bc0c59ed6c0bf98e3dc57b9e09077903e71ca735ce23493.file" dev="loop1" ino=19535 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:selinux_autorelabel_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/7f/53f3fd0590cead4bc0c59ed6c0bf98e3dc57b9e09077903e71ca735ce23493.file" dev="loop1" ino=19535 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:selinux_autorelabel_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="afcc5a4cd13a41df88be160c4b6e1d21c25d0b6a4a46569f97e72cb948905e.file" dev="loop1" ino=19474 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_timedated_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b5/afcc5a4cd13a41df88be160c4b6e1d21c25d0b6a4a46569f97e72cb948905e.file" dev="loop1" ino=19474 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_timedated_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b5/afcc5a4cd13a41df88be160c4b6e1d21c25d0b6a4a46569f97e72cb948905e.file" dev="loop1" ino=19474 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_timedated_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="e634aef0134efe7d4b845721bde0a079eed9cd627ebba5afe98c6b5498d378.file" dev="loop1" ino=21393 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f9/e634aef0134efe7d4b845721bde0a079eed9cd627ebba5afe98c6b5498d378.file" dev="loop1" ino=21393 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f9/e634aef0134efe7d4b845721bde0a079eed9cd627ebba5afe98c6b5498d378.file" dev="loop1" ino=21393 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="07a041df4535d5a7bab3110b2b8bbf08bdac7d80f88374182e2a72a9385953.file" dev="loop1" ino=21594 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:groupadd_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1d/07a041df4535d5a7bab3110b2b8bbf08bdac7d80f88374182e2a72a9385953.file" dev="loop1" ino=21594 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:groupadd_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1d/07a041df4535d5a7bab3110b2b8bbf08bdac7d80f88374182e2a72a9385953.file" dev="loop1" ino=21594 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:groupadd_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a2438b16f38330bb37ab6a4a438a0d87dc69e359ec876e40c91700323ebd72.file" dev="loop1" ino=19029 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootupd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/2c/a2438b16f38330bb37ab6a4a438a0d87dc69e359ec876e40c91700323ebd72.file" dev="loop1" ino=19029 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootupd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/2c/a2438b16f38330bb37ab6a4a438a0d87dc69e359ec876e40c91700323ebd72.file" dev="loop1" ino=19029 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootupd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b9bbfd3a1eaf265e413d3fe335a41d21c68cdfaaa4a7ab57438abb10028ea8.file" dev="loop1" ino=19536 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain kernel: audit: type=1400 audit(1716905382.729:305): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b9bbfd3a1eaf265e413d3fe335a41d21c68cdfaaa4a7ab57438abb10028ea8.file" dev="loop1" ino=19536 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain kernel: audit: type=1400 audit(1716905382.729:305): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8c/b9bbfd3a1eaf265e413d3fe335a41d21c68cdfaaa4a7ab57438abb10028ea8.file" dev="loop1" ino=19536 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain kernel: audit: type=1400 audit(1716905382.730:306): avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8c/b9bbfd3a1eaf265e413d3fe335a41d21c68cdfaaa4a7ab57438abb10028ea8.file" dev="loop1" ino=19536 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8c/b9bbfd3a1eaf265e413d3fe335a41d21c68cdfaaa4a7ab57438abb10028ea8.file" dev="loop1" ino=19536 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8c/b9bbfd3a1eaf265e413d3fe335a41d21c68cdfaaa4a7ab57438abb10028ea8.file" dev="loop1" ino=19536 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:init_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="3bcff7404c3ff996b8be4d8970547cade419bc914ad09e3e7b07819a4f7e20.file" dev="loop1" ino=19593 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_machined_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/03/3bcff7404c3ff996b8be4d8970547cade419bc914ad09e3e7b07819a4f7e20.file" dev="loop1" ino=19593 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_machined_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/03/3bcff7404c3ff996b8be4d8970547cade419bc914ad09e3e7b07819a4f7e20.file" dev="loop1" ino=19593 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_machined_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain kernel: audit: type=1400 audit(1716905382.900:307): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="3bcff7404c3ff996b8be4d8970547cade419bc914ad09e3e7b07819a4f7e20.file" dev="loop1" ino=19593 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_machined_exec_t:s0 tclass=file permissive=1
May 28 14:09:42 localhost.localdomain kernel: audit: type=1400 audit(1716905382.900:307): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/03/3bcff7404c3ff996b8be4d8970547cade419bc914ad09e3e7b07819a4f7e20.file" dev="loop1" ino=19593 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_machined_exec_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="decd86b2243a8287125960e5a084b2619c0047447d126b678d52220098439d.file" dev="loop1" ino=4641 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_conf_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/35/decd86b2243a8287125960e5a084b2619c0047447d126b678d52220098439d.file" dev="loop1" ino=4641 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_conf_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/35/decd86b2243a8287125960e5a084b2619c0047447d126b678d52220098439d.file" dev="loop1" ino=4641 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_conf_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="0152234bf2536bd79b3ae61907e2d5bef59c40f724a06c369d8da9659f18ba.file" dev="loop1" ino=5198 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:samba_etc_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/69/0152234bf2536bd79b3ae61907e2d5bef59c40f724a06c369d8da9659f18ba.file" dev="loop1" ino=5198 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:samba_etc_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/69/0152234bf2536bd79b3ae61907e2d5bef59c40f724a06c369d8da9659f18ba.file" dev="loop1" ino=5198 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:samba_etc_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="3cafb4ac93ac534792c47341cb6f208387e6e18ddc6a1c9a07c0595bcdde14.file" dev="loop1" ino=19459 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rfkill_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/9b/3cafb4ac93ac534792c47341cb6f208387e6e18ddc6a1c9a07c0595bcdde14.file" dev="loop1" ino=19459 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rfkill_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/9b/3cafb4ac93ac534792c47341cb6f208387e6e18ddc6a1c9a07c0595bcdde14.file" dev="loop1" ino=19459 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_rfkill_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="9a0552ed1e3e8e618f8c58c87d7cca9c820ae648a6227425ef583384b7a248.file" dev="loop1" ino=5211 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:namespace_init_exec_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b0/9a0552ed1e3e8e618f8c58c87d7cca9c820ae648a6227425ef583384b7a248.file" dev="loop1" ino=5211 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:namespace_init_exec_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/b0/9a0552ed1e3e8e618f8c58c87d7cca9c820ae648a6227425ef583384b7a248.file" dev="loop1" ino=5211 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:namespace_init_exec_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="abd9a12e78c1f25c7941bab0a98f47fb1554aa7f3709bcc3348a02067974a7.file" dev="loop1" ino=3999 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:pasta_exec_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d5/abd9a12e78c1f25c7941bab0a98f47fb1554aa7f3709bcc3348a02067974a7.file" dev="loop1" ino=3999 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:pasta_exec_t:s0 tclass=file permissive=1
May 28 14:09:43 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d5/abd9a12e78c1f25c7941bab0a98f47fb1554aa7f3709bcc3348a02067974a7.file" dev="loop1" ino=3999 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:pasta_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="38025422ebec5f45193127462e513d946fc3152909ed8c69ddd2c3579486a6.file" dev="loop1" ino=21375 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1e/38025422ebec5f45193127462e513d946fc3152909ed8c69ddd2c3579486a6.file" dev="loop1" ino=21375 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1e/38025422ebec5f45193127462e513d946fc3152909ed8c69ddd2c3579486a6.file" dev="loop1" ino=21375 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:iptables_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="8ef2c262e00d648d6d272eddae21c7e92636b919fa4f035876807625abd050.file" dev="loop1" ino=19612 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_socket_proxyd_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/22/8ef2c262e00d648d6d272eddae21c7e92636b919fa4f035876807625abd050.file" dev="loop1" ino=19612 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_socket_proxyd_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/22/8ef2c262e00d648d6d272eddae21c7e92636b919fa4f035876807625abd050.file" dev="loop1" ino=19612 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_socket_proxyd_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="9bfdc53cab7ec8673cdea07ca83dd1ece371fd60303d4dabeec36486b66df0.file" dev="loop1" ino=9108 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_script_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a5/9bfdc53cab7ec8673cdea07ca83dd1ece371fd60303d4dabeec36486b66df0.file" dev="loop1" ino=9108 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_script_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a5/9bfdc53cab7ec8673cdea07ca83dd1ece371fd60303d4dabeec36486b66df0.file" dev="loop1" ino=9108 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_script_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="fe98cb4f38b45a330ff20e041c4248dd26bd57f2d4672d7c0b910bb1bdfd2e.file" dev="loop1" ino=19629 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_userdbd_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a5/fe98cb4f38b45a330ff20e041c4248dd26bd57f2d4672d7c0b910bb1bdfd2e.file" dev="loop1" ino=19629 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_userdbd_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a5/fe98cb4f38b45a330ff20e041c4248dd26bd57f2d4672d7c0b910bb1bdfd2e.file" dev="loop1" ino=19629 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_userdbd_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="5618390ce410af5d735f52d3e3ca9ab234c4a3abeb2d460e240167d592531d.file" dev="loop1" ino=4414 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/dc/5618390ce410af5d735f52d3e3ca9ab234c4a3abeb2d460e240167d592531d.file" dev="loop1" ino=4414 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/dc/5618390ce410af5d735f52d3e3ca9ab234c4a3abeb2d460e240167d592531d.file" dev="loop1" ino=4414 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { dac_read_search } for  pid=1336 comm="coreos-installe" capability=2  scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:coreos_installer_t:s0 tclass=capability permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="df1201583b73a9c309d0fb9a9e133b62ef2191260cdfce49972c7ed99be74f.file" dev="loop1" ino=6606 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:shadow_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/dc/df1201583b73a9c309d0fb9a9e133b62ef2191260cdfce49972c7ed99be74f.file" dev="loop1" ino=6606 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:shadow_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/dc/df1201583b73a9c309d0fb9a9e133b62ef2191260cdfce49972c7ed99be74f.file" dev="loop1" ino=6606 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:shadow_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="775f61b9b2a897a789aa8a117b470b4f7d075db967abe82c3a727b0504e069.file" dev="loop1" ino=4211 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f1/775f61b9b2a897a789aa8a117b470b4f7d075db967abe82c3a727b0504e069.file" dev="loop1" ino=4211 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f1/775f61b9b2a897a789aa8a117b470b4f7d075db967abe82c3a727b0504e069.file" dev="loop1" ino=4211 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a239f52b614ac9f16d5e1babd0586e4c2e38fd8a14e59e975fcb9194ff0d65.file" dev="loop1" ino=18309 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f1/a239f52b614ac9f16d5e1babd0586e4c2e38fd8a14e59e975fcb9194ff0d65.file" dev="loop1" ino=18309 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f1/a239f52b614ac9f16d5e1babd0586e4c2e38fd8a14e59e975fcb9194ff0d65.file" dev="loop1" ino=18309 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_object_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d79da5fba66118b920892f67a7c8376d5597bec6ec388ce46ae492aa5729bc.file" dev="loop1" ino=5193 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rsync_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/07/d79da5fba66118b920892f67a7c8376d5597bec6ec388ce46ae492aa5729bc.file" dev="loop1" ino=5193 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rsync_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/07/d79da5fba66118b920892f67a7c8376d5597bec6ec388ce46ae492aa5729bc.file" dev="loop1" ino=5193 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rsync_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a4f344faab38fdb79e48be01be5f1a513984fa66f982600f92c682838f6254.file" dev="loop1" ino=4484 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/07/a4f344faab38fdb79e48be01be5f1a513984fa66f982600f92c682838f6254.file" dev="loop1" ino=4484 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/07/a4f344faab38fdb79e48be01be5f1a513984fa66f982600f92c682838f6254.file" dev="loop1" ino=4484 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="02b4d0acf383b98a1d44778fae408e7fce1eb8e9dc99330473af1e1789f9cf.file" dev="loop1" ino=6768 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/39/02b4d0acf383b98a1d44778fae408e7fce1eb8e9dc99330473af1e1789f9cf.file" dev="loop1" ino=6768 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_etc_t:s0 tclass=file permissive=1
May 28 14:09:46 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/39/02b4d0acf383b98a1d44778fae408e7fce1eb8e9dc99330473af1e1789f9cf.file" dev="loop1" ino=6768 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_etc_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="bad7aa107e8ad0bc5b0801915e7c1b4ad8235de5bf1c1b2702585e375cd241.file" dev="loop1" ino=4008 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ping_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/61/bad7aa107e8ad0bc5b0801915e7c1b4ad8235de5bf1c1b2702585e375cd241.file" dev="loop1" ino=4008 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ping_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/61/bad7aa107e8ad0bc5b0801915e7c1b4ad8235de5bf1c1b2702585e375cd241.file" dev="loop1" ino=4008 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ping_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="76a08167a874cedb9d4b859bf64472bae5e0c33783a0d053fe94a78e9a8c7f.file" dev="loop1" ino=21721 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/61/76a08167a874cedb9d4b859bf64472bae5e0c33783a0d053fe94a78e9a8c7f.file" dev="loop1" ino=21721 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/61/76a08167a874cedb9d4b859bf64472bae5e0c33783a0d053fe94a78e9a8c7f.file" dev="loop1" ino=21721 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="4ee33cf6782afb9d9c3e12e78dddfcea73f27a30f7bf7b92fb954be64b78cb.file" dev="loop1" ino=21697 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:pam_timestamp_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/94/4ee33cf6782afb9d9c3e12e78dddfcea73f27a30f7bf7b92fb954be64b78cb.file" dev="loop1" ino=21697 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:pam_timestamp_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/94/4ee33cf6782afb9d9c3e12e78dddfcea73f27a30f7bf7b92fb954be64b78cb.file" dev="loop1" ino=21697 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:pam_timestamp_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="7766f8f5fdb9587b5e3541ea72c3c25213c1f9d6fdaf60a1962df7b634bc5b.file" dev="loop1" ino=3791 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gpg_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ee/7766f8f5fdb9587b5e3541ea72c3c25213c1f9d6fdaf60a1962df7b634bc5b.file" dev="loop1" ino=3791 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gpg_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ee/7766f8f5fdb9587b5e3541ea72c3c25213c1f9d6fdaf60a1962df7b634bc5b.file" dev="loop1" ino=3791 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gpg_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b531b7a3f71f88cebd00467d2c9dfcb511ab2983dc3ab0dcc9719c7974cc45.file" dev="loop1" ino=18734 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:policykit_auth_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ee/b531b7a3f71f88cebd00467d2c9dfcb511ab2983dc3ab0dcc9719c7974cc45.file" dev="loop1" ino=18734 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:policykit_auth_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ee/b531b7a3f71f88cebd00467d2c9dfcb511ab2983dc3ab0dcc9719c7974cc45.file" dev="loop1" ino=18734 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:policykit_auth_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="afb78749d1b5bd2fcf923d7d3dd0a3f9d4a9a9a1937b71b770e6d0c9df11cb.file" dev="loop1" ino=19588 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_initctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/30/afb78749d1b5bd2fcf923d7d3dd0a3f9d4a9a9a1937b71b770e6d0c9df11cb.file" dev="loop1" ino=19588 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_initctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/30/afb78749d1b5bd2fcf923d7d3dd0a3f9d4a9a9a1937b71b770e6d0c9df11cb.file" dev="loop1" ino=19588 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_initctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="417c2bb2d0c754832ccfd5623213ca51a809369d8b41a3949c81d55ec332a8.file" dev="loop1" ino=5182 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:initrc_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/68/417c2bb2d0c754832ccfd5623213ca51a809369d8b41a3949c81d55ec332a8.file" dev="loop1" ino=5182 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:initrc_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/68/417c2bb2d0c754832ccfd5623213ca51a809369d8b41a3949c81d55ec332a8.file" dev="loop1" ino=5182 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:initrc_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="890fe4e59a587f381d1ad329157606886b2b6e4bc46194e7a82503f18cef32.file" dev="loop1" ino=4209 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8f/890fe4e59a587f381d1ad329157606886b2b6e4bc46194e7a82503f18cef32.file" dev="loop1" ino=4209 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8f/890fe4e59a587f381d1ad329157606886b2b6e4bc46194e7a82503f18cef32.file" dev="loop1" ino=4209 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="260ffe357f9a5797d028003d0364290ce2143ef9005e76155aff76961e1bf6.file" dev="loop1" ino=21754 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain kernel: audit: type=1400 audit(1716905387.747:357): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="260ffe357f9a5797d028003d0364290ce2143ef9005e76155aff76961e1bf6.file" dev="loop1" ino=21754 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain kernel: audit: type=1400 audit(1716905387.747:357): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/33/260ffe357f9a5797d028003d0364290ce2143ef9005e76155aff76961e1bf6.file" dev="loop1" ino=21754 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain kernel: audit: type=1400 audit(1716905387.747:358): avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/33/260ffe357f9a5797d028003d0364290ce2143ef9005e76155aff76961e1bf6.file" dev="loop1" ino=21754 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/33/260ffe357f9a5797d028003d0364290ce2143ef9005e76155aff76961e1bf6.file" dev="loop1" ino=21754 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/33/260ffe357f9a5797d028003d0364290ce2143ef9005e76155aff76961e1bf6.file" dev="loop1" ino=21754 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_exec_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain kernel: audit: type=1400 audit(1716905387.820:359): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d157d643936a297d2fb9a76f33116320d2cf4b1893eec7e016407808eea0a7.file" dev="loop1" ino=9100 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_iscsid_script_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain kernel: audit: type=1400 audit(1716905387.820:359): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/62/d157d643936a297d2fb9a76f33116320d2cf4b1893eec7e016407808eea0a7.file" dev="loop1" ino=9100 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_iscsid_script_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d157d643936a297d2fb9a76f33116320d2cf4b1893eec7e016407808eea0a7.file" dev="loop1" ino=9100 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_iscsid_script_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/62/d157d643936a297d2fb9a76f33116320d2cf4b1893eec7e016407808eea0a7.file" dev="loop1" ino=9100 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_iscsid_script_t:s0 tclass=file permissive=1
May 28 14:09:47 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/62/d157d643936a297d2fb9a76f33116320d2cf4b1893eec7e016407808eea0a7.file" dev="loop1" ino=9100 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_iscsid_script_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="3c4cd34c6968c114c9a8eab3fb7737317861070f79b90e2475958ba07cf9b0.file" dev="loop1" ino=19523 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:wireguard_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/55/3c4cd34c6968c114c9a8eab3fb7737317861070f79b90e2475958ba07cf9b0.file" dev="loop1" ino=19523 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:wireguard_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/55/3c4cd34c6968c114c9a8eab3fb7737317861070f79b90e2475958ba07cf9b0.file" dev="loop1" ino=19523 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:wireguard_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d2b391d073b5fad92ef2d6fb91b5aca48b37e0afe59705240883bb679f523e.file" dev="loop1" ino=19429 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_machined_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5e/d2b391d073b5fad92ef2d6fb91b5aca48b37e0afe59705240883bb679f523e.file" dev="loop1" ino=19429 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_machined_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5e/d2b391d073b5fad92ef2d6fb91b5aca48b37e0afe59705240883bb679f523e.file" dev="loop1" ino=19429 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_machined_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="6dcfead1692120cd55798f081bf78fcaf37c6a5520d6ae5eda8c51e29fef07.file" dev="loop1" ino=21395 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_priv_helper_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5e/6dcfead1692120cd55798f081bf78fcaf37c6a5520d6ae5eda8c51e29fef07.file" dev="loop1" ino=21395 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_priv_helper_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5e/6dcfead1692120cd55798f081bf78fcaf37c6a5520d6ae5eda8c51e29fef07.file" dev="loop1" ino=21395 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_priv_helper_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2adfb176af2e2e7077191630d22b2ab9b557024c163581a3a9d9b7b346eccc.file" dev="loop1" ino=3881 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:login_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/c3/2adfb176af2e2e7077191630d22b2ab9b557024c163581a3a9d9b7b346eccc.file" dev="loop1" ino=3881 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:login_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/c3/2adfb176af2e2e7077191630d22b2ab9b557024c163581a3a9d9b7b346eccc.file" dev="loop1" ino=3881 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:login_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b781e02ebe5b8b27f71749005997cc8dcc0286839db2d3c59d1cc5e2452245.file" dev="loop1" ino=21610 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:hwclock_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ea/b781e02ebe5b8b27f71749005997cc8dcc0286839db2d3c59d1cc5e2452245.file" dev="loop1" ino=21610 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:hwclock_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ea/b781e02ebe5b8b27f71749005997cc8dcc0286839db2d3c59d1cc5e2452245.file" dev="loop1" ino=21610 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:hwclock_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a942ed0b78e0878c25371a0a2bdb63ea93657b4a94fcb92815295db58eb8de.file" dev="loop1" ino=4213 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_keygen_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/08/a942ed0b78e0878c25371a0a2bdb63ea93657b4a94fcb92815295db58eb8de.file" dev="loop1" ino=4213 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_keygen_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/08/a942ed0b78e0878c25371a0a2bdb63ea93657b4a94fcb92815295db58eb8de.file" dev="loop1" ino=4213 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ssh_keygen_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d0fd9c056073549c79fcfb550d0366f4bbe5ab08742201c214126444dbe5c4.file" dev="loop1" ino=19597 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_network_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/34/d0fd9c056073549c79fcfb550d0366f4bbe5ab08742201c214126444dbe5c4.file" dev="loop1" ino=19597 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_network_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/34/d0fd9c056073549c79fcfb550d0366f4bbe5ab08742201c214126444dbe5c4.file" dev="loop1" ino=19597 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_network_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="c75d410ee18748171583647de43ddd0affd1ba3545835e688f128e7340b2d7.file" dev="loop1" ino=21712 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:keyutils_request_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3a/c75d410ee18748171583647de43ddd0affd1ba3545835e688f128e7340b2d7.file" dev="loop1" ino=21712 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:keyutils_request_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3a/c75d410ee18748171583647de43ddd0affd1ba3545835e688f128e7340b2d7.file" dev="loop1" ino=21712 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:keyutils_request_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="1cc173dd15691bda4ed077a23cc417423c426e16da05fd48eb08fa1c85ca06.file" dev="loop1" ino=4066 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rsync_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/53/1cc173dd15691bda4ed077a23cc417423c426e16da05fd48eb08fa1c85ca06.file" dev="loop1" ino=4066 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rsync_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/53/1cc173dd15691bda4ed077a23cc417423c426e16da05fd48eb08fa1c85ca06.file" dev="loop1" ino=4066 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rsync_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="576b302d34cef63aa2e4fdaa358b11efae88f6d493ef143530afc9c6bd5b6d.file" dev="loop1" ino=4380 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_console_script_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/6e/576b302d34cef63aa2e4fdaa358b11efae88f6d493ef143530afc9c6bd5b6d.file" dev="loop1" ino=4380 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_console_script_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/6e/576b302d34cef63aa2e4fdaa358b11efae88f6d493ef143530afc9c6bd5b6d.file" dev="loop1" ino=4380 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_dispatcher_console_script_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="8fd5b008fb508b16dc33dff96b2b5813236612d4f7ceeb59555ea80b5efdcc.file" dev="loop1" ino=21629 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:irqbalance_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/78/8fd5b008fb508b16dc33dff96b2b5813236612d4f7ceeb59555ea80b5efdcc.file" dev="loop1" ino=21629 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:irqbalance_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/78/8fd5b008fb508b16dc33dff96b2b5813236612d4f7ceeb59555ea80b5efdcc.file" dev="loop1" ino=21629 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:irqbalance_exec_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="9078fdf7060f0880bf6a9c12058091af890371b1699e012a6587a3eebf50be.file" dev="loop1" ino=18695 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_dep_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/87/9078fdf7060f0880bf6a9c12058091af890371b1699e012a6587a3eebf50be.file" dev="loop1" ino=18695 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_dep_t:s0 tclass=file permissive=1
May 28 14:09:48 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/87/9078fdf7060f0880bf6a9c12058091af890371b1699e012a6587a3eebf50be.file" dev="loop1" ino=18695 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:modules_dep_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="4fbc82907ed03eb17b48e5f4ae889293b570e025d120157fb933a9615295b0.file" dev="loop1" ino=4223 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sudo_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/da/4fbc82907ed03eb17b48e5f4ae889293b570e025d120157fb933a9615295b0.file" dev="loop1" ino=4223 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sudo_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/da/4fbc82907ed03eb17b48e5f4ae889293b570e025d120157fb933a9615295b0.file" dev="loop1" ino=4223 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sudo_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="8d929ce72d45cf2452e739931c9ac538efb19f7b68f044d2b5e31065fff59b.file" dev="loop1" ino=21491 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/06/8d929ce72d45cf2452e739931c9ac538efb19f7b68f044d2b5e31065fff59b.file" dev="loop1" ino=21491 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/06/8d929ce72d45cf2452e739931c9ac538efb19f7b68f044d2b5e31065fff59b.file" dev="loop1" ino=21491 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="fa56c5fdabbd81977ab4c547d44006be99f560cfd43f136186489125988333.file" dev="loop1" ino=21768 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chkpwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5f/fa56c5fdabbd81977ab4c547d44006be99f560cfd43f136186489125988333.file" dev="loop1" ino=21768 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chkpwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5f/fa56c5fdabbd81977ab4c547d44006be99f560cfd43f136186489125988333.file" dev="loop1" ino=21768 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chkpwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="74686d3fa223bb4090632fa245009968c106ec4dd45639e3a63b5883f64c57.file" dev="loop1" ino=21635 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/92/74686d3fa223bb4090632fa245009968c106ec4dd45639e3a63b5883f64c57.file" dev="loop1" ino=21635 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/92/74686d3fa223bb4090632fa245009968c106ec4dd45639e3a63b5883f64c57.file" dev="loop1" ino=21635 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2eb90299cd5cb32bd4aa057c47dc33a082196e76de585646441fc107307c92.file" dev="loop1" ino=4576 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:krb5_conf_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/92/2eb90299cd5cb32bd4aa057c47dc33a082196e76de585646441fc107307c92.file" dev="loop1" ino=4576 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:krb5_conf_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/92/2eb90299cd5cb32bd4aa057c47dc33a082196e76de585646441fc107307c92.file" dev="loop1" ino=4576 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:krb5_conf_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="dc3a30d9034b5fee188926f94c444974f61718b83c62c9d21d95251dee3ba5.file" dev="loop1" ino=21720 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ed/dc3a30d9034b5fee188926f94c444974f61718b83c62c9d21d95251dee3ba5.file" dev="loop1" ino=21720 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/ed/dc3a30d9034b5fee188926f94c444974f61718b83c62c9d21d95251dee3ba5.file" dev="loop1" ino=21720 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b2f6b45a01dc9cef7adb502ae0b75a8517c9d74146605d3dc0e4bde23d6c06.file" dev="loop1" ino=3875 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:loadkeys_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/03/b2f6b45a01dc9cef7adb502ae0b75a8517c9d74146605d3dc0e4bde23d6c06.file" dev="loop1" ino=3875 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:loadkeys_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/03/b2f6b45a01dc9cef7adb502ae0b75a8517c9d74146605d3dc0e4bde23d6c06.file" dev="loop1" ino=3875 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:loadkeys_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="8dd6e4fef43ee92f78535dc43675cbd08ae5042ed2d439915df63e338a808f.file" dev="loop1" ino=19603 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_importd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/70/8dd6e4fef43ee92f78535dc43675cbd08ae5042ed2d439915df63e338a808f.file" dev="loop1" ino=19603 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_importd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/70/8dd6e4fef43ee92f78535dc43675cbd08ae5042ed2d439915df63e338a808f.file" dev="loop1" ino=19603 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_importd_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="14f235c5532ddf0b9ac0f0a4ddfc753d15d7faef5ae7b8cbd582a4f616201f.file" dev="loop1" ino=4337 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:wireguard_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/80/14f235c5532ddf0b9ac0f0a4ddfc753d15d7faef5ae7b8cbd582a4f616201f.file" dev="loop1" ino=4337 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:wireguard_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/80/14f235c5532ddf0b9ac0f0a4ddfc753d15d7faef5ae7b8cbd582a4f616201f.file" dev="loop1" ino=4337 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:wireguard_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f4029d01f3bb371949c6aa941311fee82fa1e68ab3a07e8feee23a15b40f33.file" dev="loop1" ino=21639 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ldconfig_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/9b/f4029d01f3bb371949c6aa941311fee82fa1e68ab3a07e8feee23a15b40f33.file" dev="loop1" ino=21639 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ldconfig_exec_t:s0 tclass=file permissive=1
May 28 14:09:49 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/9b/f4029d01f3bb371949c6aa941311fee82fa1e68ab3a07e8feee23a15b40f33.file" dev="loop1" ino=21639 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:ldconfig_exec_t:s0 tclass=file permissive=1
May 28 14:09:50 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d8598d882a88006255cd48ee8dd9fa8975b328d485d3de2e3be869b1488088.file" dev="loop1" ino=21769 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:updpwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:50 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/db/d8598d882a88006255cd48ee8dd9fa8975b328d485d3de2e3be869b1488088.file" dev="loop1" ino=21769 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:updpwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:50 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/db/d8598d882a88006255cd48ee8dd9fa8975b328d485d3de2e3be869b1488088.file" dev="loop1" ino=21769 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:updpwd_exec_t:s0 tclass=file permissive=1
May 28 14:09:50 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="2a5cfbe13ec36b046b6cc7075172a9d3602ff1088020f1f70ac487bb065603.file" dev="loop1" ino=21690 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:nfsidmap_exec_t:s0 tclass=file permissive=1
May 28 14:09:50 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f4/2a5cfbe13ec36b046b6cc7075172a9d3602ff1088020f1f70ac487bb065603.file" dev="loop1" ino=21690 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:nfsidmap_exec_t:s0 tclass=file permissive=1
May 28 14:09:50 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f4/2a5cfbe13ec36b046b6cc7075172a9d3602ff1088020f1f70ac487bb065603.file" dev="loop1" ino=21690 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:nfsidmap_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="ea705804c72ef8762db89e8215adb3f2404d02532acef5581d4953ee345cef.file" dev="loop1" ino=19303 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_keygen_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0a/ea705804c72ef8762db89e8215adb3f2404d02532acef5581d4953ee345cef.file" dev="loop1" ino=19303 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_keygen_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0a/ea705804c72ef8762db89e8215adb3f2404d02532acef5581d4953ee345cef.file" dev="loop1" ino=19303 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_keygen_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="10179e9cf0744e73581b5861029647a8fb1c62bd532d0f07bec6297ae573b0.file" dev="loop1" ino=21745 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:setfiles_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0f/10179e9cf0744e73581b5861029647a8fb1c62bd532d0f07bec6297ae573b0.file" dev="loop1" ino=21745 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:setfiles_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0f/10179e9cf0744e73581b5861029647a8fb1c62bd532d0f07bec6297ae573b0.file" dev="loop1" ino=21745 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:setfiles_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="3f63d077e14f042c4738f4f93c13739e6ee92f744c16798c95584d7b675aab.file" dev="loop1" ino=19608 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_resolved_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/56/3f63d077e14f042c4738f4f93c13739e6ee92f744c16798c95584d7b675aab.file" dev="loop1" ino=19608 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_resolved_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/56/3f63d077e14f042c4738f4f93c13739e6ee92f744c16798c95584d7b675aab.file" dev="loop1" ino=19608 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_resolved_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="0e30fc0999127ce4b990c48ec581a63a0ae1d08a483080988ae6aa50136c75.file" dev="loop1" ino=3996 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:passt_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/60/0e30fc0999127ce4b990c48ec581a63a0ae1d08a483080988ae6aa50136c75.file" dev="loop1" ino=3996 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:passt_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/60/0e30fc0999127ce4b990c48ec581a63a0ae1d08a483080988ae6aa50136c75.file" dev="loop1" ino=3996 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:passt_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="e15bd1544857551149def4439a836bffd1d1bac9c140919fbc562749f0b628.file" dev="loop1" ino=19626 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_logind_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/dc/e15bd1544857551149def4439a836bffd1d1bac9c140919fbc562749f0b628.file" dev="loop1" ino=19626 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_logind_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/dc/e15bd1544857551149def4439a836bffd1d1bac9c140919fbc562749f0b628.file" dev="loop1" ino=19626 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_logind_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="fdbe025f14e4830d5d100562c201bd0a05469008066f0df33c743984cb9c98.file" dev="loop1" ino=3850 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:journalctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/dc/fdbe025f14e4830d5d100562c201bd0a05469008066f0df33c743984cb9c98.file" dev="loop1" ino=3850 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:journalctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:51 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/dc/fdbe025f14e4830d5d100562c201bd0a05469008066f0df33c743984cb9c98.file" dev="loop1" ino=3850 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:journalctl_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d52ee65e1d8d83f5cc0bf6d68953d14fc6e2f1f3c68e7b5d6f56843f2d8108.file" dev="loop1" ino=19539 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_fstab_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/18/d52ee65e1d8d83f5cc0bf6d68953d14fc6e2f1f3c68e7b5d6f56843f2d8108.file" dev="loop1" ino=19539 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_fstab_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/18/d52ee65e1d8d83f5cc0bf6d68953d14fc6e2f1f3c68e7b5d6f56843f2d8108.file" dev="loop1" ino=19539 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_fstab_generator_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="44303a754f0738298d46f78a5812a212d41cb52b0daa1c5dd98d8c1f6c5ec5.file" dev="loop1" ino=21522 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:cifs_helper_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3c/44303a754f0738298d46f78a5812a212d41cb52b0daa1c5dd98d8c1f6c5ec5.file" dev="loop1" ino=21522 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:cifs_helper_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3c/44303a754f0738298d46f78a5812a212d41cb52b0daa1c5dd98d8c1f6c5ec5.file" dev="loop1" ino=21522 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:cifs_helper_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="65971afabd02269e7064c7ddc7c3d22dbda022137df080571924ad58b726dd.file" dev="loop1" ino=21520 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyd_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/42/65971afabd02269e7064c7ddc7c3d22dbda022137df080571924ad58b726dd.file" dev="loop1" ino=21520 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyd_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/42/65971afabd02269e7064c7ddc7c3d22dbda022137df080571924ad58b726dd.file" dev="loop1" ino=21520 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:chronyd_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f77a45918c683a8e2e10317a841765bf4b4ff3d6c8cf0bca624139e52c6cbd.file" dev="loop1" ino=21452 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain kernel: audit: type=1400 audit(1716905392.845:427): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f77a45918c683a8e2e10317a841765bf4b4ff3d6c8cf0bca624139e52c6cbd.file" dev="loop1" ino=21452 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain kernel: audit: type=1400 audit(1716905392.845:427): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/42/f77a45918c683a8e2e10317a841765bf4b4ff3d6c8cf0bca624139e52c6cbd.file" dev="loop1" ino=21452 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain kernel: audit: type=1400 audit(1716905392.845:428): avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/42/f77a45918c683a8e2e10317a841765bf4b4ff3d6c8cf0bca624139e52c6cbd.file" dev="loop1" ino=21452 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/42/f77a45918c683a8e2e10317a841765bf4b4ff3d6c8cf0bca624139e52c6cbd.file" dev="loop1" ino=21452 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:52 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/42/f77a45918c683a8e2e10317a841765bf4b4ff3d6c8cf0bca624139e52c6cbd.file" dev="loop1" ino=21452 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sssd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain kernel: audit: type=1400 audit(1716905393.009:429): avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="1f88f59d3f4b1bb200ae9dda7ab89ddebee6b86960171f0925eb500f9e76a3.file" dev="loop1" ino=21492 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain kernel: audit: type=1400 audit(1716905393.009:429): avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d3/1f88f59d3f4b1bb200ae9dda7ab89ddebee6b86960171f0925eb500f9e76a3.file" dev="loop1" ino=21492 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="1f88f59d3f4b1bb200ae9dda7ab89ddebee6b86960171f0925eb500f9e76a3.file" dev="loop1" ino=21492 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d3/1f88f59d3f4b1bb200ae9dda7ab89ddebee6b86960171f0925eb500f9e76a3.file" dev="loop1" ino=21492 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/d3/1f88f59d3f4b1bb200ae9dda7ab89ddebee6b86960171f0925eb500f9e76a3.file" dev="loop1" ino=21492 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="69cc4f8ce3ca73f15fc939e620beadaac8be90c654b3bda9b2d07007c01c69.file" dev="loop1" ino=19256 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcbind_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f0/69cc4f8ce3ca73f15fc939e620beadaac8be90c654b3bda9b2d07007c01c69.file" dev="loop1" ino=19256 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcbind_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/f0/69cc4f8ce3ca73f15fc939e620beadaac8be90c654b3bda9b2d07007c01c69.file" dev="loop1" ino=19256 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:rpcbind_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f6fd2bb5caf261594cae9f1401a28ad944e4680ac2f7fac2a8096ca7b19dab.file" dev="loop1" ino=19411 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/16/f6fd2bb5caf261594cae9f1401a28ad944e4680ac2f7fac2a8096ca7b19dab.file" dev="loop1" ino=19411 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/16/f6fd2bb5caf261594cae9f1401a28ad944e4680ac2f7fac2a8096ca7b19dab.file" dev="loop1" ino=19411 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hwdb_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b0c588ddc83e9254c22dc2ccf872b2e4440d59a6f14ecf465ce969822d963a.file" dev="loop1" ino=21403 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_keygen_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1f/b0c588ddc83e9254c22dc2ccf872b2e4440d59a6f14ecf465ce969822d963a.file" dev="loop1" ino=21403 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_keygen_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/1f/b0c588ddc83e9254c22dc2ccf872b2e4440d59a6f14ecf465ce969822d963a.file" dev="loop1" ino=21403 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sshd_keygen_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="59f13a44831a22e8087731cf20f9d0eeca54d9e91819fc8cf565f8d816acab.file" dev="loop1" ino=19596 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_modules_load_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/52/59f13a44831a22e8087731cf20f9d0eeca54d9e91819fc8cf565f8d816acab.file" dev="loop1" ino=19596 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_modules_load_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/52/59f13a44831a22e8087731cf20f9d0eeca54d9e91819fc8cf565f8d816acab.file" dev="loop1" ino=19596 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_modules_load_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="ac770fa9e869a6755520506c5f108964ef27177acc057179c482d90cc32434.file" dev="loop1" ino=4437 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_config_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/52/ac770fa9e869a6755520506c5f108964ef27177acc057179c482d90cc32434.file" dev="loop1" ino=4437 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_config_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/52/ac770fa9e869a6755520506c5f108964ef27177acc057179c482d90cc32434.file" dev="loop1" ino=4437 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:container_config_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a2872a192c4b279594fa076f7d43c688a1ac55189fad358d23c3c965866f1d.file" dev="loop1" ino=21527 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/6c/a2872a192c4b279594fa076f7d43c688a1ac55189fad358d23c3c965866f1d.file" dev="loop1" ino=21527 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/6c/a2872a192c4b279594fa076f7d43c688a1ac55189fad358d23c3c965866f1d.file" dev="loop1" ino=21527 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:crack_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="d3592a3cea0b70197741b3f87bf48d62ce34e297f3aab2b9ffe404742b2dfc.file" dev="loop1" ino=4259 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_passwd_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/99/d3592a3cea0b70197741b3f87bf48d62ce34e297f3aab2b9ffe404742b2dfc.file" dev="loop1" ino=4259 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_passwd_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/99/d3592a3cea0b70197741b3f87bf48d62ce34e297f3aab2b9ffe404742b2dfc.file" dev="loop1" ino=4259 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_passwd_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="fc7d36eec3d2c7ef6902ad9368edb3ae29eb52b8dfe5945a47a9fcdf5621af.file" dev="loop1" ino=4222 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:su_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bb/fc7d36eec3d2c7ef6902ad9368edb3ae29eb52b8dfe5945a47a9fcdf5621af.file" dev="loop1" ino=4222 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:su_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bb/fc7d36eec3d2c7ef6902ad9368edb3ae29eb52b8dfe5945a47a9fcdf5621af.file" dev="loop1" ino=4222 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:su_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="9120dd0115f2b3ee77049e53b7f20cc89458f7ff81b7a3a9d5edf53eabac55.file" dev="loop1" ino=19584 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hostnamed_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bb/9120dd0115f2b3ee77049e53b7f20cc89458f7ff81b7a3a9d5edf53eabac55.file" dev="loop1" ino=19584 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hostnamed_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bb/9120dd0115f2b3ee77049e53b7f20cc89458f7ff81b7a3a9d5edf53eabac55.file" dev="loop1" ino=19584 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_hostnamed_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="6f34e841aa42941b3a0c3d1916ba15675a7883991eb9d87c87cc93b5987e31.file" dev="loop1" ino=21545 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/e3/6f34e841aa42941b3a0c3d1916ba15675a7883991eb9d87c87cc93b5987e31.file" dev="loop1" ino=21545 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/e3/6f34e841aa42941b3a0c3d1916ba15675a7883991eb9d87c87cc93b5987e31.file" dev="loop1" ino=21545 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a60a7cc5acea504fab479fd0292526bba198a7dac67578d24072c928213488.file" dev="loop1" ino=19575 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_coredump_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3e/a60a7cc5acea504fab479fd0292526bba198a7dac67578d24072c928213488.file" dev="loop1" ino=19575 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_coredump_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/3e/a60a7cc5acea504fab479fd0292526bba198a7dac67578d24072c928213488.file" dev="loop1" ino=19575 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_coredump_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="3eed5727d6009aac6ede417e44c72a8517eb2d4a661755ee7be5cbe34e3622.file" dev="loop1" ino=3829 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:hostname_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/90/3eed5727d6009aac6ede417e44c72a8517eb2d4a661755ee7be5cbe34e3622.file" dev="loop1" ino=3829 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:hostname_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/90/3eed5727d6009aac6ede417e44c72a8517eb2d4a661755ee7be5cbe34e3622.file" dev="loop1" ino=3829 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:hostname_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="af9c8bd5aee0ca02b78fa476247389fdc76eeab25003e3d39b2d719d61c05d.file" dev="loop1" ino=21298 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0d/af9c8bd5aee0ca02b78fa476247389fdc76eeab25003e3d39b2d719d61c05d.file" dev="loop1" ino=21298 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/0d/af9c8bd5aee0ca02b78fa476247389fdc76eeab25003e3d39b2d719d61c05d.file" dev="loop1" ino=21298 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fwupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="f3d0c04ef6bdb58af60f7ba7327409a00e25744c04b66a007ee5cf34120e18.file" dev="loop1" ino=19640 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/27/f3d0c04ef6bdb58af60f7ba7327409a00e25744c04b66a007ee5cf34120e18.file" dev="loop1" ino=19640 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/27/f3d0c04ef6bdb58af60f7ba7327409a00e25744c04b66a007ee5cf34120e18.file" dev="loop1" ino=19640 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dbusd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="591733d65f70baf4e831f1b1f459555dee7bf182029c02e52ff604f815861d.file" dev="loop1" ino=4566 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_etc_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/27/591733d65f70baf4e831f1b1f459555dee7bf182029c02e52ff604f815861d.file" dev="loop1" ino=4566 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_etc_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/27/591733d65f70baf4e831f1b1f459555dee7bf182029c02e52ff604f815861d.file" dev="loop1" ino=4566 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:kdump_etc_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="cf11b021b3a1d5d2e55f852eada754b95b959bd20ea3f04f5bf0a4e9f71902.file" dev="loop1" ino=4394 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:adjtime_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/53/cf11b021b3a1d5d2e55f852eada754b95b959bd20ea3f04f5bf0a4e9f71902.file" dev="loop1" ino=4394 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:adjtime_t:s0 tclass=file permissive=1
May 28 14:09:53 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/53/cf11b021b3a1d5d2e55f852eada754b95b959bd20ea3f04f5bf0a4e9f71902.file" dev="loop1" ino=4394 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:adjtime_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="17fac214825aab7bd78face53b725519716f7aa2f38160ae3c6e1377659d19.file" dev="loop1" ino=21652 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/73/17fac214825aab7bd78face53b725519716f7aa2f38160ae3c6e1377659d19.file" dev="loop1" ino=21652 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/73/17fac214825aab7bd78face53b725519716f7aa2f38160ae3c6e1377659d19.file" dev="loop1" ino=21652 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:mdadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="7136bfb48b17b142fb49666582dfe57548351813c29529c8f024f2f15c7a35.file" dev="loop1" ino=21665 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:oddjob_mkhomedir_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a8/7136bfb48b17b142fb49666582dfe57548351813c29529c8f024f2f15c7a35.file" dev="loop1" ino=21665 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:oddjob_mkhomedir_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a8/7136bfb48b17b142fb49666582dfe57548351813c29529c8f024f2f15c7a35.file" dev="loop1" ino=21665 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:oddjob_mkhomedir_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="a2a4faad111720482128d33f375d7afdedc70599d9408ce3558f0aa62a022a.file" dev="loop1" ino=3621 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bc/a2a4faad111720482128d33f375d7afdedc70599d9408ce3558f0aa62a022a.file" dev="loop1" ino=3621 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/bc/a2a4faad111720482128d33f375d7afdedc70599d9408ce3558f0aa62a022a.file" dev="loop1" ino=3621 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:bootupd_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="88fe9d88400311274d14aa29615680031bb834bb488b518fbd180835a34b21.file" dev="loop1" ino=19430 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_modules_load_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/15/88fe9d88400311274d14aa29615680031bb834bb488b518fbd180835a34b21.file" dev="loop1" ino=19430 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_modules_load_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/15/88fe9d88400311274d14aa29615680031bb834bb488b518fbd180835a34b21.file" dev="loop1" ino=19430 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:systemd_modules_load_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b021a9865c9ef5644ed161fa2ee029d7a2514cb1ca8b18b0074fe428a87a0f.file" dev="loop1" ino=21641 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:load_policy_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5f/b021a9865c9ef5644ed161fa2ee029d7a2514cb1ca8b18b0074fe428a87a0f.file" dev="loop1" ino=21641 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:load_policy_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/5f/b021a9865c9ef5644ed161fa2ee029d7a2514cb1ca8b18b0074fe428a87a0f.file" dev="loop1" ino=21641 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:load_policy_exec_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="b871a31a519e07189842f370c2cdedc01a05a8369abd9e2292fc0aeb5bef90.file" dev="loop1" ino=19018 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/6f/b871a31a519e07189842f370c2cdedc01a05a8369abd9e2292fc0aeb5bef90.file" dev="loop1" ino=19018 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:54 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/6f/b871a31a519e07189842f370c2cdedc01a05a8369abd9e2292fc0aeb5bef90.file" dev="loop1" ino=19018 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:auditd_unit_file_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="493a12a23fb6ccf76d62408cc14054f8ede4550796275ca9e0e7e5c1f075af.file" dev="loop1" ino=4515 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_etc_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { read open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/09/493a12a23fb6ccf76d62408cc14054f8ede4550796275ca9e0e7e5c1f075af.file" dev="loop1" ino=4515 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_etc_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/09/493a12a23fb6ccf76d62408cc14054f8ede4550796275ca9e0e7e5c1f075af.file" dev="loop1" ino=4515 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:dnsmasq_etc_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="1cab47315c647ac42dcf8fa75ba6d1e619ea26c3c695a2d83fa6298a3471e2.file" dev="loop1" ino=4377 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_etc_rw_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8d/1cab47315c647ac42dcf8fa75ba6d1e619ea26c3c695a2d83fa6298a3471e2.file" dev="loop1" ino=4377 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_etc_rw_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/8d/1cab47315c647ac42dcf8fa75ba6d1e619ea26c3c695a2d83fa6298a3471e2.file" dev="loop1" ino=4377 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:NetworkManager_etc_rw_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { read } for  pid=1336 comm="coreos-installe" name="bd0aaeae12ee10c8d248c9305240f28605236601ae65185776e153b3e5e385.file" dev="loop1" ino=3792 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gpg_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { open } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a2/bd0aaeae12ee10c8d248c9305240f28605236601ae65185776e153b3e5e385.file" dev="loop1" ino=3792 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gpg_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:55 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/sysroot/ostree/repo/objects/a2/bd0aaeae12ee10c8d248c9305240f28605236601ae65185776e153b3e5e385.file" dev="loop1" ino=3792 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:gpg_agent_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { getattr } for  pid=1336 comm="coreos-installe" path="/run/udev/control" dev="tmpfs" ino=611 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=sock_file permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { execute } for  pid=1369 comm="coreos-installe" name="07eca774636bb5bf79cb0f9aebb433e650c857fe3898a1af4b634ef457989d.file" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { read open } for  pid=1369 comm="coreos-installe" path="/usr/bin/udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { execute_no_trans } for  pid=1369 comm="coreos-installe" path="/usr/bin/udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { map } for  pid=1369 comm="udevadm" path="/usr/bin/udevadm" dev="loop1" ino=4297 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { write } for  pid=1369 comm="udevadm" name="socket" dev="tmpfs" ino=62 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:syslogd_var_run_t:s0 tclass=sock_file permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { sendto } for  pid=1369 comm="udevadm" path="/systemd/journal/socket" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=unix_dgram_socket permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { map } for  pid=1369 comm="udevadm" path="/sys/fs/selinux/status" dev="selinuxfs" ino=19 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:security_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { search } for  pid=1369 comm="udevadm" name="contexts" dev="loop0" ino=3147283 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:default_context_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { search } for  pid=1369 comm="udevadm" name="files" dev="loop0" ino=804 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { write } for  pid=1369 comm="udevadm" name="control" dev="tmpfs" ino=611 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=sock_file permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { connectto } for  pid=1369 comm="udevadm" path="/run/udev/control" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:udev_t:s0-s0:c0.c1023 tclass=unix_stream_socket permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { read } for  pid=1369 comm="udevadm" name="udev" dev="tmpfs" ino=64 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1369]: AVC avc:  denied  { watch } for  pid=1369 comm="udevadm" path="/run/udev" dev="tmpfs" ino=64 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { read } for  pid=1370 comm="lsblk" name="block" dev="sysfs" ino=6 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sysfs_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { read } for  pid=1370 comm="lsblk" name="252:0" dev="sysfs" ino=28943 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sysfs_t:s0 tclass=lnk_file permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { read } for  pid=1370 comm="lsblk" name="hidden" dev="sysfs" ino=28909 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sysfs_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { open } for  pid=1370 comm="lsblk" path="/sys/devices/pci0000:00/0000:00:05.0/virtio2/block/vda/hidden" dev="sysfs" ino=28909 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sysfs_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { getattr } for  pid=1370 comm="lsblk" path="/sys/devices/pci0000:00/0000:00:05.0/virtio2/block/vda/hidden" dev="sysfs" ino=28909 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sysfs_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { getattr } for  pid=1370 comm="lsblk" path="/sys/class/block/vda" dev="sysfs" ino=28905 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:sysfs_t:s0 tclass=lnk_file permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { read } for  pid=1370 comm="lsblk" name="b252:0" dev="tmpfs" ino=1187 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { open } for  pid=1370 comm="lsblk" path="/run/udev/data/b252:0" dev="tmpfs" ino=1187 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1370]: AVC avc:  denied  { getattr } for  pid=1370 comm="lsblk" path="/run/udev/data/b252:0" dev="tmpfs" ino=1187 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:udev_var_run_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { write } for  pid=1336 comm="coreos-installe" name="/" dev="tmpfs" ino=1 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { add_name } for  pid=1336 comm="coreos-installe" name="coreos-installer-VEiDOZ" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { create } for  pid=1336 comm="coreos-installe" name="coreos-installer-VEiDOZ" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { mounton } for  pid=1336 comm="coreos-installe" path="/tmp/coreos-installer-VEiDOZ" dev="tmpfs" ino=13 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { setsched } for  pid=1336 comm="coreos-installe" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=process permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { mount } for  pid=1336 comm="coreos-installe" name="/" dev="vda3" ino=2 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fs_t:s0 tclass=filesystem permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { write } for  pid=1336 comm="coreos-installe" name="/" dev="vda3" ino=2 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:boot_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { add_name } for  pid=1336 comm="coreos-installe" name="ignition" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:boot_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { create } for  pid=1336 comm="coreos-installe" name="ignition" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:boot_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { setattr } for  pid=1336 comm="coreos-installe" name="ignition" dev="vda3" ino=65545 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:boot_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { create } for  pid=1336 comm="coreos-installe" name="config.ign" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:boot_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { write } for  pid=1336 comm="coreos-installe" path="/tmp/coreos-installer-VEiDOZ/ignition/config.ign" dev="vda3" ino=65546 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:boot_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { setattr } for  pid=1336 comm="coreos-installe" name="config.ign" dev="vda3" ino=65546 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:boot_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { unmount } for  pid=1336 comm="coreos-installe" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fs_t:s0 tclass=filesystem permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { remove_name } for  pid=1336 comm="coreos-installe" name="coreos-installer-VEiDOZ" dev="tmpfs" ino=13 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1336]: AVC avc:  denied  { rmdir } for  pid=1336 comm="coreos-installe" name="coreos-installer-VEiDOZ" dev="tmpfs" ino=13 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1380]: AVC avc:  denied  { read } for  pid=1380 comm="udevadm" name="file_contexts.subs_dist" dev="loop0" ino=811 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1380]: AVC avc:  denied  { open } for  pid=1380 comm="udevadm" path="/etc/selinux/targeted/contexts/files/file_contexts.subs_dist" dev="loop0" ino=811 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1380]: AVC avc:  denied  { getattr } for  pid=1380 comm="udevadm" path="/etc/selinux/targeted/contexts/files/file_contexts.subs_dist" dev="loop0" ino=811 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1380]: AVC avc:  denied  { map } for  pid=1380 comm="udevadm" path="/etc/selinux/targeted/contexts/files/file_contexts.bin" dev="loop0" ino=806 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:file_context_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1381]: AVC avc:  denied  { execute } for  pid=1381 comm="coreos-installe" name="blkid" dev="loop1" ino=21500 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fsadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1381]: AVC avc:  denied  { read open } for  pid=1381 comm="coreos-installe" path="/usr/sbin/blkid" dev="loop1" ino=21500 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fsadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1381]: AVC avc:  denied  { execute_no_trans } for  pid=1381 comm="coreos-installe" path="/usr/sbin/blkid" dev="loop1" ino=21500 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fsadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1381]: AVC avc:  denied  { map } for  pid=1381 comm="blkid" path="/usr/sbin/blkid" dev="loop1" ino=21500 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fsadm_exec_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1383]: AVC avc:  denied  { getattr } for  pid=1383 comm="rm" name="/" dev="loop0" ino=128 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:fs_t:s0 tclass=filesystem permissive=1
May 28 14:09:57 localhost.localdomain audit[1383]: AVC avc:  denied  { write } for  pid=1383 comm="rm" name="installer.d" dev="loop0" ino=1029 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1383]: AVC avc:  denied  { remove_name } for  pid=1383 comm="rm" name="mantle.yaml" dev="loop0" ino=1041 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=dir permissive=1
May 28 14:09:57 localhost.localdomain audit[1383]: AVC avc:  denied  { unlink } for  pid=1383 comm="rm" name="mantle.yaml" dev="loop0" ino=1041 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=file permissive=1
May 28 14:09:57 localhost.localdomain audit[1383]: AVC avc:  denied  { rmdir } for  pid=1383 comm="rm" name="installer.d" dev="loop0" ino=1029 scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:object_r:etc_t:s0 tclass=dir permissive=1
May 28 14:10:13 localhost kernel: audit: type=1400 audit(1716905412.501:4): avc:  denied  { map_read map_write } for  pid=1337 comm="coreos-installe" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:init_t:s0 tclass=bpf permissive=1

@zpytela
Copy link

zpytela commented Jun 6, 2024

You are right it should have happened in inverse order, but for independent products it cannot be considered a regression. Will be synced anyway in one of the next builds.

@zpytela
Copy link

zpytela commented Jun 7, 2024

I can assign a specific label for the generator if there is some easy deployable test, or if you can test coprbuilds which are a part of each selinux-policy PR.

@jlebon
Copy link
Member Author

jlebon commented Jun 7, 2024

I think it makes sense to try to make systemd generators more confined than init_t, but I would expect a generic shared type (e.g. systemd_generator_t) and only have generator-specific labels if it truly requires it. Usually, a generator will just read state from somewhere and generate systemd units/symlinks in /run/systemd/ (this is also enforced by systemd now in v253, which is in c10s at least). A type for this should be safe to apply to most generators, including coreos-installer.

For testing, I've just written coreos/coreos-assembler#3819 which should help. However, unfortunately there's no great shortcut to testing changes to the ISO. You kinda have to rebuild it today. I added some docs there for that too. Though you can also post an RPM somewhere and we can test it.

@jlebon
Copy link
Member Author

jlebon commented Jun 7, 2024

To be clear, also OK to have a dedicated label if that aligns better with some wider plan. Just making sure we're not creating more work for ourselves than we need to.

@zpytela
Copy link

zpytela commented Jun 7, 2024

Thanks, Jonathan, I'll give it a go. Actually, systemd_generic_generator_t is in place in Fedora rawhide already since 2 weeks ago.

@jlebon
Copy link
Member Author

jlebon commented Jun 19, 2024

Looks like this is also hitting rawhide now:

[    8.718476] audit: type=1400 audit(1718805526.519:7): avc:  denied  { map_read map_write } for  pid=931 comm="coreos-installe" scontext=system_u:system_r:coreos_installer_t:s0 tcontext=system_u:system_r:init_t:s0 tclass=bpf permissive=0
...
[    8.952784] ln: 
[    8.952787] failed to access '/run/systemd/generator/default.target'
[    8.953053] : Permission denied
[    8.955590] 
[    9.050233] (sd-exec-[928]: /usr/lib/systemd/system-generators/coreos-installer-generator failed with exit status 1.

@zpytela
Copy link

zpytela commented Jun 19, 2024

The first one is a different problem in libbpf with a workaround in systemd. The second one will probably be fixed with the next build, but without further information I cannot be sure.

@jlebon
Copy link
Member Author

jlebon commented Jun 25, 2024

Also now seeing systemd-network-generator failures:

[   15.551428] audit: type=1400 audit(1719315829.291:4): avc:  denied  { create } for  pid=1328 comm="systemd-network" name=".#networkhsYri0" scontext=system_u:system_r:systemd_network_generator_t:s0 tcontext=system_u:object_r:init_var_run_t:s0 tclass=file permissive=0

I'll file a separate Jira for that one.

@jlebon
Copy link
Member Author

jlebon commented Jul 10, 2024

Also now seeing systemd-network-generator failures:

[   15.551428] audit: type=1400 audit(1719315829.291:4): avc:  denied  { create } for  pid=1328 comm="systemd-network" name=".#networkhsYri0" scontext=system_u:system_r:systemd_network_generator_t:s0 tcontext=system_u:object_r:init_var_run_t:s0 tclass=file permissive=0

I'll file a separate Jira for that one.

Filed https://issues.redhat.com/browse/RHEL-47033

@jlebon
Copy link
Member Author

jlebon commented Jul 16, 2024

Looks like c9s composes are now failing because selinux-policy-38.1.36-1.el9 (the last working version) is no longer on the mirrors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants