From 80ecfb64af26c6f95850b1389b50c7d2349bef1a Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Apr 04 2022 00:58:47 +0000 Subject: livesys-main: Only quote around the filename Quoting the whole path seems to make the script source fail, so only quote the filename that needs the shell variable. --- diff --git a/libexec/livesys/livesys-main b/libexec/livesys/livesys-main index 507a8b5..a6e9586 100755 --- a/libexec/livesys/livesys-main +++ b/libexec/livesys/livesys-main @@ -146,7 +146,7 @@ if [ -f /etc/sysconfig/livesys ]; then . /etc/sysconfig/livesys if [ -n "${livesys_session}" ]; then - . "/usr/libexec/livesys/sessions.d/livesys-${livesys_session}" + . /usr/libexec/livesys/sessions.d/"livesys-${livesys_session}" fi fi