NixOS-based container for running GitHub actions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

disable containerd /etc/passwd and /etc/group workaround

+6 -6
+6 -6
flake.nix
··· 483 483 484 484 # https://github.com/containerd/containerd/issues/12683 485 485 486 - tmp="$(realpath --relative-to=etc etc/passwd)" 487 - rm -f etc/passwd 488 - cp "$tmp" etc/passwd 486 + # tmp="$(realpath --relative-to=etc etc/passwd)" 487 + # rm -f etc/passwd 488 + # cp "$tmp" etc/passwd 489 489 490 - tmp="$(realpath --relative-to=etc etc/group)" 491 - rm -f etc/group 492 - cp "$tmp" etc/group 490 + # tmp="$(realpath --relative-to=etc etc/group)" 491 + # rm -f etc/group 492 + # cp "$tmp" etc/group 493 493 ''; 494 494 fakeRootCommands = '' 495 495 chmod u=rwxt,u=rwx,o=rwx tmp