From ad95fe7cab310a6235fb783b4447200ad8a26b50 Mon Sep 17 00:00:00 2001 From: Jip-Hop <2871973+Jip-Hop@users.noreply.github.com> Date: Mon, 29 Jan 2024 08:58:28 +0100 Subject: [PATCH] Update comments --- jlmkr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jlmkr.py b/jlmkr.py index 7a8e218..6702f22 100755 --- a/jlmkr.py +++ b/jlmkr.py @@ -320,8 +320,6 @@ def start_jail(jail_name, check_startup_enabled=False): f"--description=My nspawn jail {jail_name} [created with jailmaker]", ] - # Always add --bind-ro=/sys/module to make lsmod happy - # https://manpages.debian.org/bookworm/manpages/sysfs.5.en.html systemd_nspawn_additional_args = [ f"--machine={jail_name}", f"--directory={JAIL_ROOTFS_NAME}", @@ -984,6 +982,8 @@ def create_jail(jail_name, distro="debian", release="bookworm"): "--setenv=SYSTEMD_NSPAWN_LOCK=0", ] + # Always add --bind-ro=/sys/module to make lsmod happy + # https://manpages.debian.org/bookworm/manpages/sysfs.5.en.html systemd_nspawn_default_args = [ "--keep-unit", "--quiet",