summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-06-22 21:48:35 +0200
committerLudovic Courtès <ludo@gnu.org>2014-06-22 21:48:35 +0200
commit72507e23b5aeb6b0308d8c4db8d2286095b845ad (patch)
treec36970407a09e4c4acc8d88caf1e69d0967af53a /build-aux
parent528b6a3dcea1edab7a8d1ce62a616a0ff6c8c597 (diff)
downloadguix-72507e23b5aeb6b0308d8c4db8d2286095b845ad.tar.gz
guix-72507e23b5aeb6b0308d8c4db8d2286095b845ad.tar.xz
system: Remove useless 'members' field of 'user-group'.
* gnu/system/shadow.scm (<user-group>)[members]: Remove field. * gnu/system/install.scm (installation-os)[users]: Remove 'members' fields. Use 'supplementary-groups' for 'guest'. * build-aux/hydra/demo-os.scm (users): Likewise. * gnu/services/base.scm (guix-service): Remove 'members' field.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/hydra/demo-os.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/build-aux/hydra/demo-os.scm b/build-aux/hydra/demo-os.scm
index bb8cd05fc2..835b381ffa 100644
--- a/build-aux/hydra/demo-os.scm
+++ b/build-aux/hydra/demo-os.scm
@@ -51,19 +51,18 @@
(users (list (user-account
(name "guest")
- (group "wheel")
+ (group "users")
+ (supplementary-groups '("wheel")) ; allow use of sudo
(password "")
(comment "Guest of GNU")
(home-directory "/home/guest"))))
(groups (list (user-group (name "root") (id 0))
(user-group
(name "wheel")
- (id 1)
- (members '("guest"))) ; allow 'guest' to use sudo
+ (id 1))
(user-group
(name "users")
- (id 100)
- (members '("guest")))))
+ (id 100))))
(issue "
This is an alpha preview of the GNU system. Welcome.