Displaying 1 result from an estimated 1 matches for "lxccontainerpopulatedevices".
2012 May 16
1
lxc: Add /dev/tty to lxcContainerPopulateDevices() ?
Hi,
src/lxc/lxc_container.c:lxcContainerPopulateDevices() has this table
of devices that are automatically created when an lxc container is
started.
const struct {
int maj;
int min;
mode_t mode;
const char *path;
} devs[] = {
{ LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_NULL, 0666, "/dev/null" },
{...