lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master fc51b59: Work around a 'sudo -E' issue


From: Greg Chicares
Subject: [lmi-commits] [lmi] master fc51b59: Work around a 'sudo -E' issue
Date: Wed, 4 Mar 2020 07:29:29 -0500 (EST)

branch: master
commit fc51b5998a928fa9f1c8aa7ff223678590f8ea56
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>

    Work around a 'sudo -E' issue
    
    Applied the same technique as commit bb9e876ea, for similar reasons:
    after
      sudo -E -u "${NORMAL_USER}" ./lmi_setup_30.sh
    the value of $HOME is '/root', so '~' does not expand
      /home/"${NORMAL_USER}"
    as desired.
---
 lmi_setup_30.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lmi_setup_30.sh b/lmi_setup_30.sh
index 9d42567..739e699 100755
--- a/lmi_setup_30.sh
+++ b/lmi_setup_30.sh
@@ -28,6 +28,9 @@ set -vx
 assert_not_su
 assert_not_chrooted
 
+# Kludge:
+HOME=/home/"${NORMAL_USER}"
+
 # If cached lmi downloads are available elsewhere, copy them now.
 # Copying cache_for_lmi/downloads/ is an optional step that merely
 # conserves bandwidth. Directory cache_for_lmi/ in a native msw



reply via email to

[Prev in Thread] Current Thread [Next in Thread]