1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-07-13 21:14:05 +02:00

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
+2 -1
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