Feature #12695
closed
File.expand_path should resolve ~/ using /etc/passwd when HOME is not set
Added by fursten (Mårten Svantesson) about 8 years ago.
Updated over 7 years ago.
Description
I would expect a call like File.expand_path('~/.ssh/known_hosts') to work even though HOME is not set.
A reason this is important to fix is that libraries (in my use case Net::SSH) do calls like File.expand_path('~/.ssh/known_hosts'), but this will often fail when the code is run in a unix service, since HOME often isn't set then.
I considered reporting this as a bug, but the current behaviour is actually documented.
Why doesn't your service launcher set HOME
?
I think its good idea.
Although POSIX doesn't specify it for shell, we can define it in Ruby.
Makes sense. Ruby knows how to resolve ~user, so you may well expect it to resolve ~ as well given that the login name is identified.
Bash seems to do that:
% bash -c 'unset HOME; echo ~'
/home/knu
As far as I tested most other known shells like tcsh, zsh, ash, dash and pdksh do not, but we could follow the best.
Through my testing, I found fish unique in that it automatically defines a missing HOME on startup and then expands ~ simply to $HOME. While it would keep things simple and efficient, Ruby is not a shell after all, and altering the environment would clearly be something unasked for.
I think following Bash should be the way to go.
- Status changed from Open to Closed
Applied in changeset r56902.
file.c: home directory from system
- file.c (rb_default_home_dir): resolve home directory from the
system database when HOME is not set. [Feature #12695]
Does anyone know if this also fixes the Dir.home value? Currently (in 2.3) that doesn't work when HOME is unset either.
pabs@chianamo ~ $ unset HOME
pabs@chianamo /home/pabs $ ruby -e 'print Dir.home'
-e:1:in `home': couldn't find HOME environment -- expanding `~' (ArgumentError)
from -e:1:in `<main>'
This is a new feature of 2.4.
- Related to Bug #16787: [patch] allow Dir.home to work for non-login procs when $HOME not set added
Also available in: Atom
PDF
Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0