From d1402382bcddf6e140e5fad6dd2594ebc9068f34 Mon Sep 17 00:00:00 2001 From: Ryan Northey Date: Fri, 24 Apr 2020 23:29:49 +0100 Subject: [PATCH] Set grace period to 10 seconds for nfsd --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 778c64e..b22f7aa 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -711,7 +711,7 @@ boot_main_nfsd() { read -r -a version_flags <<< "$(boot_helper_get_version_flags)" local -r threads="${state[$STATE_NFSD_THREAD_COUNT]}" local -r port="${state[$STATE_NFSD_PORT]}" - local args=('--tcp' '--udp' '--port' "$port" "${version_flags[@]}" "$threads") + local args=('--tcp' '--udp' '-G' '10' '--port' "$port" "${version_flags[@]}" "$threads") if is_logging_debug; then args+=('--debug')