mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
install: Omit /, /root, and /var from binary tarball.
* gnu/system/install.scm (self-contained-tarball): Pass "./root/.guix-profile", "./var/guix", and "./gnu" to 'tar' command instead of ".".
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
@@ -71,7 +72,14 @@ under /root/.guix-profile where GUIX is installed."
|
||||
(with-directory-excursion %root
|
||||
(zero? (system* "tar" "--xz" "--format=gnu"
|
||||
"--owner=root:0" "--group=root:0"
|
||||
"-cvf" #$output ".")))))
|
||||
"-cvf" #$output
|
||||
;; Avoid adding /, /var, or /root to the tarball,
|
||||
;; so that the ownership and permissions of those
|
||||
;; directories will not be overwritten when
|
||||
;; extracting the archive.
|
||||
"./root/.guix-profile"
|
||||
"./var/guix"
|
||||
"./gnu")))))
|
||||
|
||||
(gexp->derivation "guix-tarball.tar.xz" build
|
||||
#:references-graphs `(("profile" ,profile))
|
||||
|
||||
Reference in New Issue
Block a user