~ruther/guix-local

4d1a2b50a6a0c8a07fb3a2ebc83c07a91da1da83 — Ludovic Courtès 12 years ago 4b155fe
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>.
1 files changed, 2 insertions(+), 1 deletions(-)

M doc/guix.texi
M doc/guix.texi => doc/guix.texi +2 -1
@@ 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