summaryrefslogtreecommitdiffstats
path: root/rules-new/mosquitto.in
blob: 4727664556a384547dc75ca29298285b6d16ae5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
## SECTION=networking

config MOSQUITTO
	tristate
	select HOST_CMAKE
	prompt "mosquitto"
	help
	  Mosquitto is a message broker for the MQTT (MQ Telemetry Transport)
	  protocol. It implements a publish/subscribe mechanism for IoT applications
	  and makes it possible to expose all your critical machine data to the cloud.

	  What could possibly go wrong ...

if MOSQUITTO

config MOSQUITTO_SERVER
        prompt "mosquitto (server)"
        bool
	help
	  Install the mosquitto broker (server)

config MOSQUITTO_PASSWD
        prompt "mosquitto_passwd"
        bool
	help
	  Install the mosquitto_passwd commandline tool

config MOSQUITTO_PUB
        prompt "mosquitto_pub"
        bool
	help
	  Install the mosquitto_pub commandline tool

config MOSQUITTO_SUB
        prompt "mosquitto_sub"
        bool
	help
	  Install the mosquitto_sub commandline tool

endif