blob: cb2beaae8a0b59cef31a97b1c89382fa42ee00a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# Support rootless podman for unitexe user.
#
# This is explained at:
# https://github.com/containers/podman/blob/main/docs/tutorials/rootless_tutorial.md#etcsubuid-and-etcsubgid-configuration
#
do_install:append() {
echo "unitexe:100000:65536" >> ${D}${sysconfdir}/subuid
echo "" >> ${D}${sysconfdir}/subuid
echo "unitexe:100000:65536" >> ${D}${sysconfdir}/subgid
echo "" >> ${D}${sysconfdir}/subgid
}
|