conf-99-basic_config_debian/root/.profile
Alban VIDAL 452a94b993 Initial commit
Signed-off-by: Alban VIDAL <alban.vidal@zordhak.fr>
2018-05-14 01:18:46 +02:00

21 lines
422 B
Bash

# ~/.profile: executed by Bourne-compatible login shells.
if [ "$BASH" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi
mesg n
################################################################################
# My conf
# if .profile.d directory exist, load .conf files
if [ -f ~/.profile.d/*.conf ] ;then
for profile_d_file in /root/.profile.d/*.conf
do
. $profile_d_file
done
fi