[Bug 1952895] Re: Some mistakes in /etc/profile
Steve Langasek
1952895 at bugs.launchpad.net
Wed Dec 1 21:23:41 UTC 2021
These appear to be reasonable suggestions for style improvements, but
these nits have been here for literally decades without causing
practical problems. They are not worth Ubuntu carrying a delta against
Debian for. Please see about getting your changes upstreamed to Debian
first. https://bugs.debian.org/src:base-files
** Changed in: base-files (Ubuntu)
Importance: Undecided => Low
** Changed in: base-files (Ubuntu)
Status: New => Won't Fix
--
You received this bug notification because you are a member of Ubuntu
Foundations Bugs, which is subscribed to base-files in Ubuntu.
https://bugs.launchpad.net/bugs/1952895
Title:
Some mistakes in /etc/profile
Status in base-files package in Ubuntu:
Won't Fix
Bug description:
OS version: Linux Mint 20.2 Cinnamon
Cinnamon version: 5.0.7
There are several missed quote paires in /etc/profile and wrong
operator used. So this config should be fixed as follows:
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "${PS1-}" ]; then
if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -r /etc/bash.bashrc ]; then # -f replaced with -r
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r "$i" ]; then # Missed quotes added
. "$i" # Missed quotes added
fi
done
unset i
fi
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/base-files/+bug/1952895/+subscriptions
More information about the foundations-bugs
mailing list