guix-commits
[Top][All Lists]
Advanced

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

01/03: system: Allow account skeletons to be directories.


From: Ludovic Courtès
Subject: 01/03: system: Allow account skeletons to be directories.
Date: Sun, 20 Mar 2016 14:33:52 +0000

civodul pushed a commit to branch master
in repository guix.

commit 4e8b7502e392bd44316f0f4ec5eed6c626655ad8
Author: Ludovic Courtès <address@hidden>
Date:   Sun Mar 20 15:02:38 2016 +0100

    system: Allow account skeletons to be directories.
    
    * gnu/system/shadow.scm (skeleton-directory): Use 'copy-recursively'
    instead of 'copy-file'.
    * gnu/build/activation.scm (copy-account-skeletons): Likewise.
---
 gnu/build/activation.scm |    5 +++--
 gnu/system/shadow.scm    |   10 ++++++----
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/build/activation.scm b/gnu/build/activation.scm
index 352e736..ae61499 100644
--- a/gnu/build/activation.scm
+++ b/gnu/build/activation.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <address@hidden>
+;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2015 Mark H Weaver <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -91,7 +91,8 @@
     (mkdir-p home)
     (for-each (lambda (file)
                 (let ((target (string-append home "/" file)))
-                  (copy-file (string-append directory "/" file) target)
+                  (copy-recursively (string-append directory "/" file)
+                                    target)
                   (make-file-writable target)))
               files)))
 
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm
index 7f3a1df..6e62aee 100644
--- a/gnu/system/shadow.scm
+++ b/gnu/system/shadow.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <address@hidden>
+;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -188,7 +188,8 @@ set debug-file-directory ~/.guix-profile/lib/debug\n")))
   "Return a directory containing SKELETONS, a list of name/derivation tuples."
   (computed-file "skel"
                  #~(begin
-                     (use-modules (ice-9 match))
+                     (use-modules (ice-9 match)
+                                  (guix build utils))
 
                      (mkdir #$output)
                      (chdir #$output)
@@ -198,9 +199,10 @@ set debug-file-directory ~/.guix-profile/lib/debug\n")))
                      ;; would just copy the symlinks as is.
                      (for-each (match-lambda
                                  ((target source)
-                                  (copy-file source target)))
+                                  (copy-recursively source target)))
                                '#$skeletons)
-                     #t)))
+                     #t)
+                 #:modules '((guix build utils))))
 
 (define (assert-valid-users/groups users groups)
   "Raise an error if USERS refer to groups not listed in GROUPS."



reply via email to

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