Changeset dd8be9e for postlfs


Ignore:
Timestamp:
08/18/2014 10:48:37 AM (10 years ago)
Author:
Krejzi <krejzi@…>
Branches:
systemd-11177
Children:
29b3453
Parents:
d312fbb3
Message:

Merge one forgotten commit.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@13944 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/config/profile-systemd.xml

    rd312fbb3 rdd8be9e  
    162162done
    163163
     164uset script RED GREEN NORMAL
     165
    164166# End /etc/profile</literal>
    165167EOF</userinput></screen>
     
    214216      </indexterm>
    215217
    216       <para>This script adds several useful paths to the <envar>PATH</envar> and
    217       <envar>PKG_CONFIG_PATH</envar> environment variables.  If you want, you
    218       can uncomment the last section to put a dot at the end of your path. This will
    219       allow executables in the current working directory to be executed without
    220       specifying a ./, however you are warned that this is generally considered a
    221       security hazard.</para>
     218      <para>This script adds some useful paths to the <envar>PATH</envar> and
     219      can be used to customize other PATH related environment variables
     220      (e.g. LD_LIBRARY_PATH, etc) that may be needed for all users.</para>
    222221
    223222<screen role="root"><userinput>cat &gt; /etc/profile.d/extrapaths.sh &lt;&lt; "EOF"
     
    230229if [ -d /usr/local/sbin -a $EUID -eq 0 ]; then
    231230        pathprepend /usr/local/sbin
    232 fi
    233 
    234 if [ -d ~/bin ]; then
    235         pathprepend ~/bin
    236 fi
    237 #if [ $EUID -gt 99 ]; then
    238 #        pathappend .
    239 #fi</literal>
     231fi</literal>
    240232EOF</userinput></screen>
    241233
     
    402394fi
    403395
     396unset RED GREEN NORMAL
     397
    404398# End /etc/bashrc</literal>
    405399EOF</userinput></screen>
     
    434428# System wide aliases and functions are in /etc/bashrc.
    435429
    436 append () {
    437   # First remove the directory
    438   local IFS=':'
    439   local NEWPATH
    440   for DIR in $PATH; do
    441      if [ "$DIR" != "$1" ]; then
    442        NEWPATH=${NEWPATH:+$NEWPATH:}$DIR
    443      fi
    444   done
    445 
    446   # Then append the directory
    447   export PATH=$NEWPATH:$1
    448 }
    449 
    450430if [ -f "$HOME/.bashrc" ] ; then
    451431  source $HOME/.bashrc
     
    453433
    454434if [ -d "$HOME/bin" ] ; then
    455   append $HOME/bin
    456 fi
    457 
    458 unset append
     435  pathprepend $HOME/bin
     436fi
     437
     438# Having . in the PATH is dangerous
     439#if [ $EUID -gt 99 ]; then
     440#  pathappend .
     441#fi
    459442
    460443# End ~/.bash_profile</literal>
Note: See TracChangeset for help on using the changeset viewer.