diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-03-29 18:53:32 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-03-29 18:53:32 +0000 |
commit | f9f3d1a79e06da708febe782e5fb5db52b889e79 (patch) | |
tree | b40e48b524e2d16996ffaaaabca756a5d9257f6f /livecd/files | |
parent | Moved livecd-bash_profile to livecd-bashrc. Added check for /usr/livecd/prof... (diff) | |
download | catalyst-f9f3d1a79e06da708febe782e5fb5db52b889e79.tar.gz catalyst-f9f3d1a79e06da708febe782e5fb5db52b889e79.tar.bz2 catalyst-f9f3d1a79e06da708febe782e5fb5db52b889e79.zip |
Added a new livecd-bash_profile that sources ~/.bashrc in case we're called from an interactive shell.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@571 d1e1f19c-881f-0410-ab34-b69fee027534
Diffstat (limited to 'livecd/files')
-rw-r--r-- | livecd/files/livecd-bash_profile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/livecd/files/livecd-bash_profile b/livecd/files/livecd-bash_profile new file mode 100644 index 00000000..9ec49d6b --- /dev/null +++ b/livecd/files/livecd-bash_profile @@ -0,0 +1,4 @@ +#!/bin/bash + +#This file is sourced by bash when you log in interactively. +[ -f ~/.bashrc ] && . ~/.bashrc |