From 56fddefc6de3b0c1f2ccb9559d86ba08d2e429b9 Mon Sep 17 00:00:00 2001 From: terramorpha Date: Thu, 13 Jul 2023 16:16:51 -0400 Subject: services: syncthing: Use the new command line syntax. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/services/syncthing.scm (syncthing-shepherd-service): Use the new command line syntax. Signed-off-by: Ludovic Courtès --- gnu/services/syncthing.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/services/syncthing.scm b/gnu/services/syncthing.scm index 7c3d5b027d..c1a0cdd81f 100644 --- a/gnu/services/syncthing.scm +++ b/gnu/services/syncthing.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2021 Oleg Pykhalov +;;; Copyright © 2023 Justin Veilleux ;;; ;;; This file is part of GNU Guix. ;;; @@ -60,9 +61,9 @@ (define syncthing-shepherd-service (requirement '(loopback)) (start #~(make-forkexec-constructor (append (list (string-append #$syncthing "/bin/syncthing") - "-no-browser" - "-no-restart" - (string-append "-logflags=" (number->string #$logflags))) + "--no-browser" + "--no-restart" + (string-append "--logflags=" (number->string #$logflags))) '#$arguments) #:user #$user #:group #$group -- cgit v1.2.3