From 708d807cc15058c4abcf3c4ded97990e8d59f12b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Mon, 3 Nov 2025 18:40:24 -0500 Subject: [PATCH] ubuntu: fix incorrect syntax in `nfs-common` file --- entrypoint-ubuntu.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint-ubuntu.sh b/entrypoint-ubuntu.sh index c7aaa83..2530506 100644 --- a/entrypoint-ubuntu.sh +++ b/entrypoint-ubuntu.sh @@ -42,13 +42,13 @@ Verbosity = 5 EOC cat > /etc/default/nfs-common << EOC -NEED_STATD=y +NEED_STATD=yes # Do you want to start the idmapd daemon? It is only needed for NFSv4. -NEED_IDMAPD=y +NEED_IDMAPD=yes # Do you want to start the gssd daemon? It is required for Kerberos mounts. -NEED_GSSD=y +NEED_GSSD=yes EOC echo NEED_SVCGSSD=y > /etc/default/nfs-kernel-server