From a6ba41107017eadb4f460e1fe873518d86d55f9c Mon Sep 17 00:00:00 2001 From: olgeni Date: Wed, 24 Apr 2002 21:26:08 +0000 Subject: Do not show the security warning dialog if BATCH is set (it causes sysinstall to hang). --- x11/gdm2/pkg-install | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'x11/gdm2') diff --git a/x11/gdm2/pkg-install b/x11/gdm2/pkg-install index 56e5a86af3eb..7634ecafb000 100644 --- a/x11/gdm2/pkg-install +++ b/x11/gdm2/pkg-install @@ -37,4 +37,6 @@ if [ "$2" = "POST-INSTALL" ]; then exit 0 fi -/usr/bin/dialog --yesno "GDM may contain vulnerabilities leading local root compromise, and it is reported widely with various security sites and groups. It is not recommended that this port be installed in public environment. Do you wish to accept the security risk and build GDM anyway?" 10 60 || /usr/bin/false +if [ -z "${BATCH}" ]; then + /usr/bin/dialog --yesno "GDM may contain vulnerabilities leading local root compromise, and it is reported widely with various security sites and groups. It is not recommended that this port be installed in public environment. Do you wish to accept the security risk and build GDM anyway?" 10 60 || /usr/bin/false +fi -- cgit