I'm using hss
(https://github.com/six-ddc/hss) to connect to 3 Ubuntu servers (the same edition). The problem is on 2 of them ~/.bash_profile
is not read over hss
, even though it is being read when I ssh in individually to each.
$ env | grep -w PATH
[O] root@example-sql -> PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
[O] root@example-www -> PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
[O] root@example-search -> PATH=.:/root/bin:/usr/local/node/bin:...
example-search
does read .bash_profile
apparently, because there are additional directories that I added to PATH
, like /root/bin
, etc. The first two, however, do not seem to.
Why is that happening? How can I fix that (I want PATH
the way I defined it, obviously).
UPDATE
I have checked for sourcing ~/.bashrc
by adding touch /tmp/something
on 'problem' host and then running some commands over hss
. It does NOT source .bashrc
on first 2 hosts.