From 5f0e42cda7d478ea73a8a9da0334b1591d14354d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Fonzo?= Date: Tue, 1 Mar 2022 17:38:11 -0300 Subject: [PATCH] starttde: Correct the disposal of the TDE_FULL_SESSION variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The variable is set and exported. But previously it was unset before xprop(1) can remove the property. This commit corrects or gives the xprop command the opportunity to remove the property (TDE_FULL_SESSION). Signed-off-by: Matías Fonzo --- starttde | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/starttde b/starttde index 3037259bf..66360e228 100755 --- a/starttde +++ b/starttde @@ -839,8 +839,7 @@ for prefix in `echo "$exepath" | sed -n -e 's,/bin[^/]*/,/shutdown/,p'`; do done done -unset TDE_FULL_SESSION xprop -root -remove TDE_FULL_SESSION -unset TDE_SESSION_UID +unset TDE_FULL_SESSION TDE_SESSION_UID echo "[starttde] Trinity shutdown complete." 1>&2