guix-commits
[Top][All Lists]
Advanced

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

102/104: etc: Install mount unit only if it exists.


From: guix-commits
Subject: 102/104: etc: Install mount unit only if it exists.
Date: Sun, 17 May 2020 11:36:55 -0400 (EDT)

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

commit eb02ba2d630779c20946bda212be23c714b7ac34
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Sun May 17 14:09:43 2020 +0200

    etc: Install mount unit only if it exists.
    
    This follows up on 1a1faa78b0498fbb71f1533beb4b65817c1d3f2a, and avoids
    the (non-fatal) error seen in <https://issues.guix.gnu.org/41356>.
    
    /gnu/store will remain writable on new foreign distribution
    installations until the next release.
    
    * etc/guix-install.sh (sys_enable_guix_daemon): Check for
    ‘gnu-store.mount’ presence before trying to cp it.
    Update forgotten copyright header.
---
 etc/guix-install.sh | 11 +++++++----
 nix/local.mk        |  1 +
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/etc/guix-install.sh b/etc/guix-install.sh
index d252c13..bcce1d8 100755
--- a/etc/guix-install.sh
+++ b/etc/guix-install.sh
@@ -3,7 +3,7 @@
 # Copyright © 2017 sharlatan <address@hidden>
 # Copyright © 2018 Ricardo Wurmus <address@hidden>
 # Copyright © 2018 Efraim Flashner <address@hidden>
-# Copyright © 2019 Tobias Geerinckx-Rice <address@hidden>
+# Copyright © 2019, 2020 Tobias Geerinckx-Rice <address@hidden>
 #
 # This file is part of GNU Guix.
 #
@@ -344,9 +344,12 @@ sys_enable_guix_daemon()
         systemd)
             { # systemd .mount units must be named after the target directory.
               # Here we assume a hard-coded name of /gnu/store.
-              cp 
"${ROOT_HOME}/.config/guix/current/lib/systemd/system/gnu-store.mount" \
-                 /etc/systemd/system/;
-              chmod 664 /etc/systemd/system/gnu-store.mount;
+              # XXX Work around <https://issues.guix.gnu.org/41356> until next 
release.
+              if [ -f 
"${ROOT_HOME}/.config/guix/current/lib/systemd/system/gnu-store.mount" ]; then
+                  cp 
"${ROOT_HOME}/.config/guix/current/lib/systemd/system/gnu-store.mount" \
+                     /etc/systemd/system/;
+                  chmod 664 /etc/systemd/system/gnu-store.mount;
+              fi
 
               cp 
"${ROOT_HOME}/.config/guix/current/lib/systemd/system/guix-daemon.service" \
                  /etc/systemd/system/;
diff --git a/nix/local.mk b/nix/local.mk
index 435fdd3..dbcdde8 100644
--- a/nix/local.mk
+++ b/nix/local.mk
@@ -1,6 +1,7 @@
 # GNU Guix --- Functional package management for GNU
 # Copyright © 2012, 2013, 2014, 2015, 2016, 2018, 2019 Ludovic Courtès 
<address@hidden>
 # Copyright © 2016 Mathieu Lirzin <address@hidden>
+# Copyright © 2020 Tobias Geerinckx-Rice <address@hidden>
 #
 # This file is part of GNU Guix.
 #



reply via email to

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