From daec54f062a703ac0e4e3b4361e5a0cf7309053a Mon Sep 17 00:00:00 2001 From: Tim Gesthuizen Date: Thu, 6 Feb 2020 19:26:03 +0100 Subject: services: inputattach: Fix broken baud rate option. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/services/desktop.scm (inputattach-shepherd-service): Use "--baud" for setting the baud-rate. Signed-off-by: 宋文武 --- gnu/services/desktop.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/services') diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 9dcdf38be1..1294d748ac 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -1070,7 +1070,7 @@ as expected."))) (match-lambda (($ type device baud-rate log-file) (let ((args (append (if baud-rate - (list "--baud-rate" (number->string baud-rate)) + (list "--baud" (number->string baud-rate)) '()) (list (string-append "--" type) device)))) -- cgit v1.2.3 From f325a33e1638e4f786168900995a9a4b3f1dc1f1 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 9 Feb 2020 11:17:13 +0000 Subject: services: web: Use the Patchwork default-from-email. Previously this wasn't used, but it should have been. * gnu/services/web.scm (patchwork-settings-module-compiler): Use the default-from-email. --- gnu/services/web.scm | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gnu/services') diff --git a/gnu/services/web.scm b/gnu/services/web.scm index 3ac7b7f52c..075140816a 100644 --- a/gnu/services/web.scm +++ b/gnu/services/web.scm @@ -1436,6 +1436,10 @@ ALLOWED_HOSTS = [ allowed-hosts)) "] +DEFAULT_FROM_EMAIL = '" #$default-from-email "' +SERVER_EMAIL = DEFAULT_FROM_EMAIL +NOTIFICATION_FROM_EMAIL = DEFAULT_FROM_EMAIL + ADMINS = [ " #$(string-concatenate (map (match-lambda -- cgit v1.2.3