From 8774a8b34dbc852bb3c2fe4f1591df11b2ec1d75 Mon Sep 17 00:00:00 2001 From: Mikhail Tergoev Date: Mon, 26 May 2025 10:28:29 +0300 Subject: [PATCH] noexec check for /home expanded (thx Alexander Kovalev) --- winehelper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winehelper b/winehelper index f7d80c4..2342c62 100755 --- a/winehelper +++ b/winehelper @@ -93,7 +93,7 @@ check_variables VKD3D_VER "1.1-2602" export CLOUD_URL="https://cloud.linux-gaming.ru/portproton" ##### CHECK NOEXEC FOR /HOME ##### -if grep -E "/home[[:space:]]" /etc/fstab | grep -q "noexec" ; then +if mount -l | grep -E "[[:space:]]/home[[:space:]]" | grep -q "noexec" ; then fatal "/home примонтирован в /etc/fstab с аргументом noexec.\nЗапуск портативной версии wine не возможен из домашнего каталога." fi