ansible-roles/redmine/files/profile

23 lines
462 B
Plaintext
Raw Permalink Normal View History

2017-08-31 09:47:07 +02:00
# ~/.profile: executed by the command interpreter for login shells.
umask 027
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes gems bin
if [ -d "$HOME/bin" ] ; then
export PATH="$HOME/www/.gem/ruby/2.3.0/bin:$PATH"
2017-08-31 09:47:07 +02:00
fi
# For systemctl --user
export XDG_RUNTIME_DIR=/run/user/$UID
# Ruby vars
export RAILS_ENV=production