guix-commits
[Top][All Lists]
Advanced

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

branch master updated: hydra: bayfront: Point Goggles at the right ZNC l


From: Tobias Geerinckx-Rice
Subject: branch master updated: hydra: bayfront: Point Goggles at the right ZNC log directory.
Date: Thu, 03 Jun 2021 17:03:35 -0400

This is an automated email from the git hooks/post-receive script.

nckx pushed a commit to branch master
in repository maintenance.

The following commit(s) were added to refs/heads/master by this push:
     new e238b56  hydra: bayfront: Point Goggles at the right ZNC log directory.
e238b56 is described below

commit e238b567d15e8775ba3433a0e3f879ac8b02f247
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Thu Jun 3 23:03:31 2021 +0200

    hydra: bayfront: Point Goggles at the right ZNC log directory.
    
    * hydra/bayfront.scm (file-systems): Bind-mount the Libera log directory
    at "/var/www/.well-known/all-logs".
---
 hydra/bayfront.scm | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/hydra/bayfront.scm b/hydra/bayfront.scm
index 00899d0..3d63bf6 100644
--- a/hydra/bayfront.scm
+++ b/hydra/bayfront.scm
@@ -717,12 +717,19 @@ access_log  /var/log/nginx/bordeaux.access.log;"))
                          (source (list "/dev/sda2" "/dev/sdb2"))
                          (target "/dev/md0")
                          (type raid-device-mapping))))
-  (file-systems (cons (file-system
-                        (device "/dev/md0")
-                        (mount-point "/")
-                        (type "ext4")
-                        (dependencies mapped-devices))
-                      %base-file-systems))
+  (file-systems (cons* (file-system
+                         (device "/dev/md0")
+                         (mount-point "/")
+                         (type "ext4")
+                         (dependencies mapped-devices))
+                       (file-system
+                         ;; This is how Goggles' IRC network is currently 
configured :-)
+                         (device 
"/home/rekado/.znc/users/bayfront-log/networks/libera/moddata/log")
+                         (mount-point "/var/www/.well-known/all-logs")
+                         (type "none")
+                         (flags '(bind-mount))
+                         (check? #f))
+                       %base-file-systems))
 
   (swap-devices '("/swap"))
 



reply via email to

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