[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
41/52: system: hurd: Add /etc/group.
From: |
guix-commits |
Subject: |
41/52: system: hurd: Add /etc/group. |
Date: |
Thu, 9 Apr 2020 13:29:12 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd-vm
in repository guix.
commit 2b0431c1aebcc10b6194b653699b8b6c93b37d52
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Wed Apr 8 09:46:40 2020 +0200
system: hurd: Add /etc/group.
This allows download to run.
* gnu/system/hurd.scm (cross-hurd-image): Add /etc/group with guixbuilder.
---
gnu/system/hurd.scm | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm
index 3d9369d..9474bf6 100644
--- a/gnu/system/hurd.scm
+++ b/gnu/system/hurd.scm
@@ -103,6 +103,12 @@ PATH=~a/bin:~a/sbin:~a/hurd
(define passwd
(plain-file "passwd"
"root:x:0:0:root:/root:/bin/sh
+guixbuilder:x:1:1:guixbuilder:/var/empty:/bin/no-sh
+"))
+
+ (define group
+ (plain-file "group"
+ "guixbuild:x:1:guixbuilder
"))
(define shadow
@@ -136,6 +142,7 @@ PATH=~a/bin:~a/sbin:~a/hurd
(directory "/root")
("/root/.profile" -> ,profile)
("/etc/fstab" -> ,fstab)
+ ("/etc/group" -> ,group)
("/etc/passwd" -> ,passwd)
("/etc/shadow" -> ,shadow)
(file "/etc/hostname" "guixygnu")
@@ -168,6 +175,7 @@ PATH=~a/bin:~a/sbin:~a/hurd
("grub.cfg" ,grub.cfg)
("fstab" ,fstab)
("passwd" ,passwd)
+ ("group" ,group)
("profile" ,profile)
("shadow" ,shadow))
#:copy-inputs? #t
- 32/52: system: hurd: Add guix., (continued)
- 32/52: system: hurd: Add guix., guix-commits, 2020/04/09
- 36/52: gnu: hurd: Install a BDF font., guix-commits, 2020/04/09
- 33/52: gnu: libdaemon: Allow cross-compilation., guix-commits, 2020/04/09
- 21/52: gnu: hurd: Install the UTF-8 motd., guix-commits, 2020/04/09
- 31/52: gnu: guix: Fix cross-compilation., guix-commits, 2020/04/09
- 27/52: gnu: openssl: Support cross-compilation to the Hurd., guix-commits, 2020/04/09
- 35/52: gnu: hurd: Add dependency on libdaemon., guix-commits, 2020/04/09
- 38/52: system: hurd: Add openssh, shepherd., guix-commits, 2020/04/09
- 37/52: gnu: openssh: Build fix for the Hurd., guix-commits, 2020/04/09
- 43/52: gnu: hurd: "/libexec/rc" spawns the console client., guix-commits, 2020/04/09
- 41/52: system: hurd: Add /etc/group.,
guix-commits <=
- 42/52: gnu: libdaemon: Cross-build with --localstatedir=/var., guix-commits, 2020/04/09
- 40/52: system: hurd: Add root profile., guix-commits, 2020/04/09
- 45/52: system: hurd: Add net-base and inetutils., guix-commits, 2020/04/09
- 39/52: gnu: guile-json: Cross-build fix., guix-commits, 2020/04/09
- 48/52: REMOVEME gnu: guix: Bugfix for cross compiling to the Hurd., guix-commits, 2020/04/09
- 51/52: DRAFT daemon: Create wrapper for mount (2)., guix-commits, 2020/04/09
- 50/52: DRAFT gnu: hurd: Add `libhurdutil' patch., guix-commits, 2020/04/09
- 46/52: system: hurd: Add guile-candy., guix-commits, 2020/04/09
- 44/52: system: hurd: Create a proper profile., guix-commits, 2020/04/09
- 47/52: system: hurd: Ensure propagated inputs are also cross-built., guix-commits, 2020/04/09