diff options
-rw-r--r-- | meta/recipes-core/base-files/base-files/profile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/meta/recipes-core/base-files/base-files/profile b/meta/recipes-core/base-files/base-files/profile index ceaf15f799..a062028226 100644 --- a/meta/recipes-core/base-files/base-files/profile +++ b/meta/recipes-core/base-files/base-files/profile | |||
@@ -3,15 +3,13 @@ | |||
3 | 3 | ||
4 | PATH="/usr/local/bin:/usr/bin:/bin" | 4 | PATH="/usr/local/bin:/usr/bin:/bin" |
5 | EDITOR="vi" # needed for packages like cron, git-commit | 5 | EDITOR="vi" # needed for packages like cron, git-commit |
6 | test -z "$TERM" && TERM="vt100" # Basic terminal capab. For screen etc. | 6 | [ "$TERM" ] || TERM="vt100" # Basic terminal capab. For screen etc. |
7 | 7 | ||
8 | if [ "$HOME" = "ROOTHOME" ]; then | 8 | # Add /sbin & co to $PATH for the root user |
9 | PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin | 9 | [ "$HOME" != "ROOTHOME" ] || PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin |
10 | fi | 10 | |
11 | if [ "$PS1" ]; then | 11 | # Set the prompt for bash and ash (no other shells known to be in use here) |
12 | # works for bash and ash (no other shells known to be in use here) | 12 | [ -z "$PS1" ] || PS1='\u@\h:\w\$ ' |
13 | PS1='\u@\h:\w\$ ' | ||
14 | fi | ||
15 | 13 | ||
16 | if [ -d /etc/profile.d ]; then | 14 | if [ -d /etc/profile.d ]; then |
17 | for i in /etc/profile.d/*.sh; do | 15 | for i in /etc/profile.d/*.sh; do |