You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ rpm -q mkosi mkosi-initrd mkosi-22-1.fc40.noarchmkosi-initrd-22-1.fc40.noarch
$ sudo kernel-install -v add 6.8.1-300.fc40.x86_64 /lib/modules/6.8.1-300.fc40.x86_64/vmlinuz..Successfully forked off '(direxec)' as PID 12339.cp: cannot open '/etc/pacman.d/gnupg/S.gpg-agent' for reading: No such device or addresscp: cannot open '/etc/pacman.d/gnupg/S.gpg-agent.extra' for reading: No such device or addresscp: cannot open '/etc/pacman.d/gnupg/S.gpg-agent.browser' for reading: No such device or addresscp: cannot open '/etc/pacman.d/gnupg/S.gpg-agent.ssh' for reading: No such device or address‣ "cp --recursive --dereference --preserve=mode,links,timestamps,ownership,xattr --reflink=auto --copy-contents /etc/pacman.d /tmp/tmp4t5oozng/etc/pacman.d --no-target-directory" returned non-zero exit code 1./usr/lib/kernel/install.d/50-mkosi.install failed with exit status 1./usr/lib/kernel/install.d/50-mkosi.install failed with exit status 1.(sd-exec-strv) failed with exit status 1.
$ ls -l /etc/pacman.d/gnupg/S.gpg-agent srwx------ 1 root root 0 Jan 22 10:58 /etc/pacman.d/gnupg/S.gpg-agent
$ file /etc/pacman.d/gnupg/S.gpg-agent /etc/pacman.d/gnupg/S.gpg-agent: socket
I don't know what created that socket there… But probably, anything that is not a file or directory should not be copied.
The text was updated successfully, but these errors were encountered:
These should be created in /run but gpg's logic for that is broken
for the root user (it checks for /run/user/0 which will never exist)
so the sockets are created in the gpg home dir (/etc/pacman.d/gnupg)
instead. Let's make sure we don't try to copy those as they cause issues
with cp -R.
Fixessystemd#2547
These should be created in /run but gpg's logic for that is broken
for the root user (it checks for /run/user/0 which will never exist)
so the sockets are created in the gpg home dir (/etc/pacman.d/gnupg)
instead. Let's make sure we don't try to copy those as they cause issues
with cp -R.
Fixessystemd#2547
I don't know what created that socket there… But probably, anything that is not a file or directory should not be copied.
The text was updated successfully, but these errors were encountered: