12 lines
302 B
Bash
Executable File
12 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
# Power off host
|
|
|
|
echo "*** Power off OctoPrint server"
|
|
DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket \
|
|
dbus-send \
|
|
--system \
|
|
--print-reply \
|
|
--dest=org.freedesktop.systemd1 \
|
|
/org/freedesktop/systemd1 \
|
|
org.freedesktop.systemd1.Manager.PowerOff
|