Skip to content

Instantly share code, notes, and snippets.

View mrazeja7's full-sized avatar

Jan Mrazek mrazeja7

View GitHub Profile
@jffz
jffz / hiveos2mqtt.sh
Last active January 12, 2024 21:43
Publish hiveos logs to mqtt broker
#!/bin/bash
# MQTT settings
BROKER=""
TOPIC=""
USER=""
PASS=""
# Ensure mosquitto-clients is installed
dpkg -s mosquitto-clients >/dev/null 2>&1 || apt update && apt install -y mosquitto-clients