|
|
10 ay önce | |
|---|---|---|
| .github | 10 ay önce | |
| docs | 10 ay önce | |
| systemctl_mqtt | 10 ay önce | |
| tests | 10 ay önce | |
| .dockerignore | 5 yıl önce | |
| .gitattributes | 10 ay önce | |
| .gitignore | 5 yıl önce | |
| .isort.cfg | 5 yıl önce | |
| .pylintrc | 3 yıl önce | |
| CHANGELOG.md | 10 ay önce | |
| COPYING | 5 yıl önce | |
| Dockerfile | 10 ay önce | |
| Makefile | 4 yıl önce | |
| Pipfile | 10 ay önce | |
| Pipfile.lock | 10 ay önce | |
| README.md | 10 ay önce | |
| docker-apparmor-profile | 10 ay önce | |
| docker-compose.yml | 10 ay önce | |
| mypy.ini | 5 yıl önce | |
| pyproject.toml | 10 ay önce | |
| setup.py | 10 ay önce |
MQTT client triggering & reporting shutdown on systemd-based systems
$ pip3 install --user --upgrade systemctl-mqtt
$ systemctl-mqtt --mqtt-host HOSTNAME_OR_IP_ADDRESS
On debian-based systems, dependencies can optionally be installed via:
$ sudo apt-get install --no-install-recommends python3-dbus python3-gi python3-paho-mqtt
Schedule poweroff by sending a MQTT message to topic systemctl/hostname/poweroff.
$ mosquitto_pub -h MQTT_BROKER -t systemctl/hostname/poweroff -n
systemctl-mqtt subscribes to logind's PrepareForShutdown signal.
systemctl halt|poweroff|reboot triggers a message with payload true on topic systemctl/hostname/preparing-for-shutdown.
Lock screen by sending a MQTT message to topic systemctl/hostname/lock-all-sessions.
$ mosquitto_pub -h MQTT_BROKER -t systemctl/hostname/lock-all-sessions -n
When MQTT Discovery is enabled (default in Home Assistant ≥0.117.0), the following entities will be added automatically:
binary_sensor.[hostname]_logind_preparing_for_shutdownbutton.[hostname]_logind_lock_all_sessionsbutton.[hostname]_logind_poweroffPass --homeassistant-discovery-prefix custom-prefix to systemctl-mqtt when
using a custom discovery topic prefix.
# https://www.home-assistant.io/docs/mqtt/broker/#configuration-variables
mqtt:
broker: BROKER_HOSTNAME_OR_IP_ADDRESS
# credentials, additional options…
script:
poweroff_raspberry_pi:
sequence:
service: mqtt.publish
data:
topic: systemctl/raspberrypi/poweroff
homeassistant:
customize:
script.poweroff_raspberry_pi:
friendly_name: poweroff pi
icon: mdi:power
automation:
- trigger:
platform: mqtt
topic: systemctl/raspberrypi/preparing-for-shutdown
payload: 'true'
action:
service: switch.turn_off
entity_id: switch.desk_lamp
docker-compose.yml.sudo apparmor_parser ./docker-apparmor-profilesudo docker-compose up --buildPre-built docker image are available at https://hub.docker.com/r/fphammerle/systemctl-mqtt/tags
Annotation of signed tags docker/* contains docker image digests: https://github.com/fphammerle/systemctl-mqtt/tags
TLS is enabled by default.
Run systemctl-mqtt --mqtt-disable-tls … to disable TLS.
systemctl-mqtt --mqtt-username me --mqtt-password-file /run/secrets/password …
# or for testing (unsafe):
systemctl-mqtt --mqtt-username me --mqtt-password secret …
systemctl-mqtt --poweroff-delay-seconds 60 …