guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

09/16: system: hurd: Add /etc/{passwd,shadow}.


From: guix-commits
Subject: 09/16: system: hurd: Add /etc/{passwd,shadow}.
Date: Sat, 11 Apr 2020 15:09:13 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit 6598c6149b28ea7ba3450e0081a55e2baabf1371
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Sun Apr 5 14:36:34 2020 +0200

    system: hurd: Add /etc/{passwd,shadow}.
    
    * gnu/system/hurd.scm: Generate hard-coded /etc/{passwd,shadow},
    allows running chown in MAKEDEV and loggin in.
---
 gnu/system/hurd.scm | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm
index 4830c91..3926f11 100644
--- a/gnu/system/hurd.scm
+++ b/gnu/system/hurd.scm
@@ -80,6 +80,18 @@ menuentry \"GNU\" {
 /dev/hd0s1     /       ext2    defaults
 "))
 
+  (define passwd
+    (plain-file "passwd"
+"root:x:0:0:root:/root:/bin/sh
+"
+))
+
+  (define shadow
+    (plain-file "shadow"
+"root::0:0:0:0:::
+"
+))
+
   (define hurd-directives
     `((directory "/servers")
       ,@(map (lambda (server)
@@ -104,6 +116,8 @@ menuentry \"GNU\" {
                                   hurd)
                                 "/hurd"))
       ("/etc/fstab" -> ,fstab)
+      ("/etc/passwd" -> ,passwd)
+      ("/etc/shadow" -> ,shadow)
       ;; XXX can we instead, harmlessly set _PATH_TTYS (from glibc) in 
runttys.c?
       ("/etc/ttys" -> ,(file-append (with-parameters ((%current-target-system
                                                    "i586-pc-gnu"))
@@ -115,7 +129,9 @@ menuentry \"GNU\" {
               #:device-nodes 'hurd
               #:inputs `(("system" ,hurd-os)
                          ("grub.cfg" ,grub.cfg)
-                         ("fstab" , fstab))
+                         ("fstab" ,fstab)
+                         ("passwd" ,passwd)
+                         ("shadow" ,shadow))
               #:copy-inputs? #t
               #:os hurd-os
               #:bootcfg-drv grub.cfg



reply via email to

[Prev in Thread] Current Thread [Next in Thread]