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>.
This commit is contained in:
Ludovic Courtès 2013-12-30 16:47:32 +01:00
parent 4b155fea74
commit 4d1a2b50a6
1 changed files with 2 additions and 1 deletions

View File

@ -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