blob: f2ab78bbbeaba8b226e5d0a0912ee9325b120de0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
cat <<EOF
Due to backflips made to be able to build the Kata guest image (not initrd!)
without root account access, rootfs has uid:gid of the builer's user account.
This might have subtle security implications and if that's not acceptable,
the user could do one of the following:
- alter the build process to use upstream's \`image_builder.sh\` to build
the image from rootfs created via \`pacman\`, with root priviledges
- use the \`-bin\`-suffixed package, containing upstream-built images
By installing this package as-is, the user acknowledges this warning.
Due to issues with properly building an Arch-based initrd, VM templating support
is broken at the moment.
EOF
}
|