Opened 20 years ago

Closed 19 years ago

Last modified 10 years ago

#1037 closed defect (fixed)

Missing instruction in 'The Bash Shell Startup Files' BLFS page

Reported by: david@… Owned by: blfs-book@…
Priority: high Milestone:
Component: BOOK Version: ~5.1
Severity: normal Keywords:
Cc:

Description

I needed to to do

chmod a+x /etc/profile.d/*.sh

before the bash startup scripts worked. I think a note to this effect should be added to the documentation at http://lfs.securewebservices.co.uk/blfs/view/stable/postlfs/profile.html

Note /etc/profile says

for script in /etc/profile.d/*.sh ; do

if [ -x $script ] ; then << !!!

. $script

fi

done

Change History (4)

comment:1 by david@…, 20 years ago

Summary: Missing instruction in 'The Bash Shell Startup Files' BLFS page Missing instruction in 'The Bash Shell Startup Files' BLFS page

comment:2 by Randy McMurchy, 19 years ago

Resolution: fixed
Status: newclosed

Caveat on the "Fixed". The bug exists in the Stable versions of the book. It is, however, fixed in SVN.

comment:3 by bdubbs@…, 19 years ago

Changed the script to:

if [ -r $script ] ; then

comment:4 by bdubbs@…, 10 years ago

Milestone: old

Milestone old deleted

Note: See TracTickets for help on using tickets.