From: Erfan Abdi Date: Fri, 24 Sep 2021 06:39:28 +0000 (+0330) Subject: lxc: Mount /dev/null for container X-Git-Tag: 1.1.0~10 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/commitdiff_plain/be63cd9e828507c57dfb511be074ab538f95adc2?ds=sidebyside lxc: Mount /dev/null for container --- diff --git a/tools/helpers/lxc.py b/tools/helpers/lxc.py index 531af80..1e69717 100644 --- a/tools/helpers/lxc.py +++ b/tools/helpers/lxc.py @@ -38,6 +38,7 @@ def generate_nodes_lxc_config(args): # Necessary dev nodes make_entry("tmpfs", "dev", "tmpfs", "nosuid 0 0", False) make_entry("/dev/zero") + make_entry("/dev/null") make_entry("/dev/full") make_entry("/dev/ashmem", check=False) make_entry("/dev/fuse")