From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050920 Firefox/1.0.7 Description of problem: When logging into an FC4 machine when the default shell for the user is set to ksh(pdksh), this error results. /etc/profile[17]: [: argument expected Version-Release number of selected component (if applicable): setup-2.5.44-1.1 How reproducible: Always Steps to Reproduce: 1. Set login shell to ksh 2. Log in Actual Results: /etc/profile[17]: [: argument expected Expected Results: no error Additional info: Fix line 17 of /etc/profile by adding quotes around $EUID Original: # Path manipulation if [ $EUID = 0 ]; then pathmunge /sbin Change to: # Path manipulation if [ "$EUID" = 0 ]; then pathmunge /sbin
*** This bug has been marked as a duplicate of 160731 ***