guix-commits
[Top][All Lists]
Advanced

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

branch master updated: services: pulseaudio: Fix /etc/pulse/default.pa n


From: guix-commits
Subject: branch master updated: services: pulseaudio: Fix /etc/pulse/default.pa not being used.
Date: Wed, 28 Dec 2022 16:58:53 -0500

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

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4ca649e978 services: pulseaudio: Fix /etc/pulse/default.pa not being 
used.
4ca649e978 is described below

commit 4ca649e978f08335fcabdcef693a7049082b5373
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Dec 28 14:26:44 2022 -0500

    services: pulseaudio: Fix /etc/pulse/default.pa not being used.
    
    Fixes <https://issues.guix.gnu.org/60383>.
    
    * gnu/services/sound.scm (pulseaudio-etc): Produce daemon.conf
    unconditionally, with the correct default-script-file location.  Produce
    client.conf unconditionally.
    
    Reported-by: Bruno Victal <mirai@makinata.eu>
---
 gnu/services/sound.scm | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/gnu/services/sound.scm b/gnu/services/sound.scm
index 8410ba2418..3e778f3cea 100644
--- a/gnu/services/sound.scm
+++ b/gnu/services/sound.scm
@@ -204,17 +204,13 @@ computed-file object~%") file))))
                   '()
                   `(("default.pa.d" ,(extra-script-files->file-union
                                       extra-script-files))))
-            ,@(if (null? daemon-conf)
-                  '()
-                  `(("daemon.conf"
-                     ,(apply mixed-text-file "daemon.conf"
-                             "default-script-file = " default-script-file "\n"
-                             (map pulseaudio-conf-entry daemon-conf)))))
-            ,@(if (null? client-conf)
-                  '()
-                  `(("client.conf"
-                     ,(apply mixed-text-file "client.conf"
-                             (map pulseaudio-conf-entry client-conf))))))))))))
+            ("daemon.conf"
+             ,(apply mixed-text-file "daemon.conf"
+                     "default-script-file = /etc/pulse/default.pa\n"
+                     (map pulseaudio-conf-entry daemon-conf)))
+            ("client.conf"
+             ,(apply mixed-text-file "client.conf"
+                     (map pulseaudio-conf-entry client-conf))))))))))
 
 (define pulseaudio-service-type
   (service-type



reply via email to

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