Aucune description

Fabian Peter Hammerle 74669520c1 added dockerfile & docker-compose.yml il y a 3 ans
.github 5e8cb7a57e pipeline: run apt-get as root il y a 3 ans
systemctl_mqtt 74669520c1 added dockerfile & docker-compose.yml il y a 3 ans
tests 9c115aef90 enable tls il y a 3 ans
.dockerignore 74669520c1 added dockerfile & docker-compose.yml il y a 3 ans
.gitignore 1574063886 mqtt message on topic systemctl/hostname/poweroff schedules poweroff with delay of 4 seconds il y a 3 ans
.pylintrc 1574063886 mqtt message on topic systemctl/hostname/poweroff schedules poweroff with delay of 4 seconds il y a 3 ans
CHANGELOG.md 1574063886 mqtt message on topic systemctl/hostname/poweroff schedules poweroff with delay of 4 seconds il y a 3 ans
COPYING 1574063886 mqtt message on topic systemctl/hostname/poweroff schedules poweroff with delay of 4 seconds il y a 3 ans
Dockerfile 74669520c1 added dockerfile & docker-compose.yml il y a 3 ans
Pipfile 1574063886 mqtt message on topic systemctl/hostname/poweroff schedules poweroff with delay of 4 seconds il y a 3 ans
Pipfile.lock 1574063886 mqtt message on topic systemctl/hostname/poweroff schedules poweroff with delay of 4 seconds il y a 3 ans
README.md 74669520c1 added dockerfile & docker-compose.yml il y a 3 ans
docker-compose.yml 74669520c1 added dockerfile & docker-compose.yml il y a 3 ans
mypy.ini 1574063886 mqtt message on topic systemctl/hostname/poweroff schedules poweroff with delay of 4 seconds il y a 3 ans
setup.py d76670da4f setup: use readme as long description il y a 3 ans

README.md

systemctl-mqtt

CI Pipeline Status Coverage Status Last Release Compatible Python Versions

MQTT client triggering shutdown on systemd-based systems

Setup

$ 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-paho-mqtt

Schedule poweroff by sending a MQTT message to topic systemctl/hostname/poweroff.

$ mosquitto_pub -h MQTT_BROKER -t systemctl/hostname/poweroff -n

Home Assistant 🏡

Sample Setup

# 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

Docker 🐳

  1. Clone this repository.
  2. Edit docker-compose.yml.
  3. docker-compose up --build

MQTT Authentication

systemctl-mqtt --mqtt-username me --mqtt-password secret …
# or
systemctl-mqtt --mqtt-username me --mqtt-password-file /var/lib/secrets/mqtt/password …