Typically, you define your path in /etc/environment. Here's a simple example:
That last bit tells the system where Ruby lives. If Ruby isn't in the path, you won't be able to run it or any gem scripts, like bundle.
Unfortunately, neither /etc/environment nor /etc/profile is respected under certain situations, like the way Capistrano works by default.
The solution for me was to edit /etc/bash.bashrc, adding this as the first line:
Note: Adding it as the first line allows / encourages it to be overwritten as needed. If you're still having problems, here's one way to get started with troubleshooting:
edit /etc/bash.bashrc to include this
edit /etc/profile to include this line:
then see whether either of those environmental variables is around when capistrano connects. From your dev machine, run "cap shell" and you will end up with a "cap>" prompt. type "echo $USES_BASHRC && echo $USES_PROFILE. Here's what I got:
Thanks to the SliceHost support team for pointing me in the right direction on this one.
REFERENCES
============
http://stefaanlippens.net/bashrc_and_others
1 |
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/ruby/bin" |
That last bit tells the system where Ruby lives. If Ruby isn't in the path, you won't be able to run it or any gem scripts, like bundle.
Unfortunately, neither /etc/environment nor /etc/profile is respected under certain situations, like the way Capistrano works by default.
The solution for me was to edit /etc/bash.bashrc, adding this as the first line:
1 |
source /etc/environment |
Note: Adding it as the first line allows / encourages it to be overwritten as needed. If you're still having problems, here's one way to get started with troubleshooting:
edit /etc/bash.bashrc to include this
1 |
export USES_BASHRC='bashrc' |
edit /etc/profile to include this line:
1 |
export USES_PROFILE = 'profile' |
then see whether either of those environmental variables is around when capistrano connects. From your dev machine, run "cap shell" and you will end up with a "cap>" prompt. type "echo $USES_BASHRC && echo $USES_PROFILE. Here's what I got:
1 2 3 4 5 |
cap> echo $USES_BASHRC && echo $USES_PROFILE
[establishing connection(s) to www.verdacom.com]
Password:
** [out :: www.verdacom.com] bashrc
** [out :: www.verdacom.com]
|
Thanks to the SliceHost support team for pointing me in the right direction on this one.
REFERENCES
============
http://stefaanlippens.net/bashrc_and_others