I am trying to run a few scripts using SSH's remote command execution on my website server (hosted using GoDaddy's shared hosting plan). These scripts require the PATH variable to be set to point to a few more scripts. I've tried to set it by editing .bashrc on the server to modify the path, but SSH does not seem to source it.
To debug it, I've created a simple test case. I added the line
export KK=123
as the first line of my .bashrc file (on the server) and then run
ssh krizkanet@krizka.net env
The output was
SHELL=/bin/bash
SSH_CLIENT=xxx.xxx.xxx.xxx 49488 22
USER=krizkanet
MAIL=/var/mail/krizkanet
PATH=/usr/local/bin:/bin:/usr/bin
PWD=/home/content/k/r/i/krizkanet
SHLVL=1
HOME=/home/content/k/r/i/krizkanet
LOGNAME=krizkanet
SSH_CONNECTION=xxx.xxx.xxx.xxx 49488 xxx.xxx.xxx.xxx
_=/bin/env
As you can see, the KK variable is not being set at all. I've also tried adding the export statement to .profile, .bash_profile and .ssh/rc. Neither of them seemed to work.
When I login using SSH and run env, it does work.
HOSTNAME=p3nlh158.shr.prod.phx3.secureserver.net
TERM=xterm
SHELL=/bin/bash
HISTSIZE=1000
SSH_CLIENT=xxx.xxx.xxx.xxx 56223 22
SSH_TTY=/dev/pts/2
USER=krizkanet
LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
**KK=123**
MAIL=/var/spool/mail/krizkanet
PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/content/k/r/i/krizkanet/bin
INPUTRC=/etc/inputrc
PWD=/home/content/k/r/i/krizkanet
SHLVL=1
HOME=/home/content/k/r/i/krizkanet
LOGNAME=krizkanet
SSH_CONNECTION=xxx.xxx.xxx.xxx 56223 xxx.xxx.xxx.xxx 22
LESSOPEN=|/usr/bin/lesspipe.sh %s
G_BROKEN_FILENAMES=1
_=/bin/env
Do you have any suggestions as to what I am doing wrong?