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?

link|improve this question

71% accept rate
I came across both of the links before I posted my question. To summarize them, .bash_profile is sourced when the shell is interactive (command prompt) and .bashrc is sourced when the shell is non-interactive (remote command execution, what I'm trying to do). As I noted in my question, I placed my export statement in .bashrc as dictated by the man page in plundra's link. It did not work. I also tried the other files in case GoDaddy's servers were configured differently. It didn't work either. – kkrizka Dec 30 '10 at 18:15
feedback

1 Answer

Thanks for answering your own question (in good detail) on your blog where you discuss setting up a Git repo. Let me carve out the essential bit here, because it took me good amount of Googling to find this:

Basically you add a command to your authorized_keys next to your public key such that it executes /bin/bash by default and otherwise you explicitly source ".bashrc" and then execute the command. Neat.

command="if [[ \"x${SSH_ORIGINAL_COMMAND}x\" == \"xx\" ]]; then /bin/bash; else source ~/.bashrc; eval \"${SSH_ORIGINAL_COMMAND}\"; fi; " ssh-rsa AAA..<rest of public key>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.