diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-12-30 16:47:32 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-12-30 16:47:32 +0100 |
commit | 4d1a2b50a6a0c8a07fb3a2ebc83c07a91da1da83 (patch) | |
tree | 903a4df3d73959e4226074994f1adc55c346b68d /doc | |
parent | 4b155fea7414db6ca596b9052f349878e8e7011e (diff) | |
download | guix-4d1a2b50a6a0c8a07fb3a2ebc83c07a91da1da83.tar guix-4d1a2b50a6a0c8a07fb3a2ebc83c07a91da1da83.tar.gz |
doc: Invoke 'useradd' with '--system'.
Reported by Kete <kete@ninthfloor.org>.
Fixes <http://bugs.gnu.org/16289>.
* doc/guix.texi (Setting Up the Daemon): Add '--system' to the 'useradd'
command line. Suggested by Kete <kete@ninthfloor.org>.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index c78e0d0d05..afa7654d54 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -213,7 +213,8 @@ Bash syntax and the @code{shadow} commands): do useradd -g guix-builder -G guix-builder \ -d /var/empty -s `which nologin` \ - -c "Guix build user $i" guix-builder$i; + -c "Guix build user $i" --system \ + guix-builder$i; done @end example |