rekado pushed a commit to branch master
in repository maintenance.

commit 119fcebb7caced2360356a855630e05a8e9217ef
Author: Ricardo Wurmus <rek...@elephly.net>
Date:   Wed Nov 14 15:35:36 2018 +0100

    hydra: berlin: Mount the external storage to /gnu.
    
    * hydra/berlin.scm <file-systems>: Mount external storage to /gnu.
---
 hydra/berlin.scm | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/hydra/berlin.scm b/hydra/berlin.scm
index 8af7486..9d048d7 100644
--- a/hydra/berlin.scm
+++ b/hydra/berlin.scm
@@ -99,12 +99,20 @@ Happy hacking!\n"))
                (terminal-inputs '(serial))
                (terminal-outputs '(serial))))
 
-  ;; Just a single disk, no RAID :-/
-  (file-systems (cons (file-system
-                        (device (file-system-label "my-root"))
-                        (mount-point "/")
-                        (type "ext4"))
-                      %base-file-systems))
+  ;; The root file system resides on just a single disk, no RAID :-/
+  (file-systems (cons* (file-system
+                         (device (file-system-label "my-root"))
+                         (mount-point "/")
+                         (type "ext4"))
+                              ;; This is a large external storage array
+                              ;; connected via 2 HBA cards.  We only mount it
+                              ;; through one of the HBA cards.  We would need
+                              ;; to use multipathd otherwise.
+                              (file-system
+                                    (device (uuid 
"a6455b66-59d2-40bd-bddb-0c572bb62a2f"))
+                                    (mount-point "/gnu")
+                                    (type "ext4"))
+                       %base-file-systems))
 
   ;; Local admin account for MDC maintenance.
   (users (cons (user-account

Reply via email to