diff options
author | Chris Marusich <cmmarusich@gmail.com> | 2018-03-25 06:47:42 +0200 |
---|---|---|
committer | Chris Marusich <cmmarusich@gmail.com> | 2018-03-29 07:03:37 +0200 |
commit | 3cd4447f5639f45b7d833f6fb2adce11ea15ba1d (patch) | |
tree | 5fa334912c7a64dbfcac5b681393dd15a15086a8 /doc | |
parent | ce353a548fcb7cae11c32579bff3bef9a7663830 (diff) | |
download | patches-3cd4447f5639f45b7d833f6fb2adce11ea15ba1d.tar patches-3cd4447f5639f45b7d833f6fb2adce11ea15ba1d.tar.gz |
guix-install.sh: Explicitly set root's home directory.
* etc/guix-install.sh (ROOT_HOME): New variable.
(sys_create_store, sys_enable_guix_daemon, sys_authorize_build_farms):
Use ROOT_HOME instead of ~root or the HOME environment variable.
* doc/guix.texi (Binary Installation): Instead of assuming that ~ and
$HOME refer to root's directory simply because commands are being run
as root, explicilty refer to it via ~root.
Fixes: <https://bugs.gnu.org/30728>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index d112b373c1..b6d041d73e 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -471,7 +471,7 @@ archive content is independent of its creation time, thus making it reproducible. @item -Make @code{root}'s profile available under @file{~/.guix-profile}: +Make @code{root}'s profile available under @file{~root/.guix-profile}: @example # ln -sf /var/guix/profiles/per-user/root/guix-profile \ @@ -482,7 +482,7 @@ Source @file{etc/profile} to augment @code{PATH} and other relevant environment variables: @example -# GUIX_PROFILE=$HOME/.guix-profile ; \ +# GUIX_PROFILE="`echo ~root`/.guix-profile" ; \ source $GUIX_PROFILE/etc/profile @end example |