From ef8bae1874ea7b812b1dff76e0bebf14b8f69003 Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 16 Apr 2019 17:15:34 +0200 Subject: [PATCH] Adjust systemd-nspawn flags * Remove --keep-unit since it causes sometimes errors and does not seem to be required * Increase maximum number of open files (the default of 1000 is too less for some packages) * Use /etc/resolv.conf from host (otherwise systemd-nspawn uses a config which does not work on my host setup) --- arch-nspawn.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch-nspawn.in b/arch-nspawn.in index 7a96f11..dd651a1 100644 --- a/arch-nspawn.in +++ b/arch-nspawn.in @@ -125,6 +125,9 @@ fi exec systemd-nspawn -q \ -D "$working_dir" \ -E "PATH=/usr/local/sbin:/usr/local/bin:/usr/bin" \ - --register=no --keep-unit --as-pid2 \ + --register=no \ + --as-pid2 \ + --rlimit=NOFILE=10000 \ + --resolv-conf=copy-host \ "${mount_args[@]}" \ "$@"