Remove mosquitto service

Evgeny PisemskySat May 17 14:40:15+0300 2025

b7c856b

Remove mosquitto service

manuals/cogd.skb

88
          :info-dir-entry "Channel of guix definitions"
99
          :info-dir-category "System administration"
1010
  (chapter :title [Modules]
11-
    (section :title [Packages])
1211
    (section :title [Services]
13-
      (subsection :title [Mosquitto]
14-
        (p [Mosquitto is a lightweight message broker that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1.  It is suitable for use on all devices from low power single board computers to full servers.])
15-
        (description
16-
         (item :key (list [Variable: ,(code [mosquitto-service-type])])
17-
               (p [This is the service type for the Mosquitto MQTT broker.  Its value is a ,(code [mosquitto-configuration]) (see below).]))
18-
         (item :key (list [Data Type: ,(code [mosquitto-configuration])])
19-
               (p [This is the configuration for Mosquitto, with the following fields:])
20-
               (description
21-
                (item :key (list [,(code [package]) (default: ,(code [mosquitto]))])
22-
                      (p [The Mosquitto package to use.]))
23-
                (item :key (list [,(code [config-file]) (default: ,(code [#f]))])
24-
                      (p [The Mosquitto configuration file as a file-like object or the value ,(code [#f]) to use the default configuration.]))
25-
                (item :key (list [,(code [user]) (default: ,(code ["mosquitto"]))])
26-
                      (p [Owner of the broker process.]))
27-
                (item :key (list [,(code [group]) (default: ,(code ["mosquitto"]))])
28-
                      (p [Owner's group of the broker process.]))))))
2912
      (subsection :title [USB relay daemon]
3013
        (p [USB relay daemon allows controlling locally connected USB HID relays remotely via MQTT protocol.])
3114
        (description

modules/cogd/services/messaging.scm unknown status 2

1-
;;; SPDX-FileCopyrightText: 2025 Evgeny Pisemsky <mail@pisemsky.site>
2-
;;;
3-
;;; SPDX-License-Identifier: GPL-3.0-or-later
4-
5-
(define-module (cogd services messaging))
6-
7-
(use-modules (gnu services messaging))
8-
9-
(re-export mosquitto-configuration
10-
           mosquitto-configuration?
11-
           mosquitto-configuration-package
12-
           mosquitto-configuration-config-file
13-
           mosquitto-configuration-user
14-
           mosquitto-configuration-group
15-
           mosquitto-service-type)