From 933b1177a05f900e5652a27b0bdcb4ec15bb7a53 Mon Sep 17 00:00:00 2001 From: Lars The Date: Wed, 8 Jan 2025 18:42:41 +0100 Subject: [PATCH] Add poweroff Luci script --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e92e775..7c9bfb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -160,6 +160,8 @@ RUN echo "Building for platform '$TARGETPLATFORM'" \ && ssh root@localhost -p $SSH_PORT "${PACKAGE_INSTALL} kmod-usb-serial usbutils minicom gpsd" \ # Add Wireguard support \ && ssh root@localhost -p $SSH_PORT "${PACKAGE_INSTALL} wireguard-tools luci-proto-wireguard" \ + # Add Power off script support \ + && ssh root@localhost -p $SSH_PORT "${PACKAGE_INSTALL} luci-app-advanced-reboot" \ \ # Add default network config \ && ssh root@localhost -p $SSH_PORT "uci set network.lan.ipaddr='172.31.1.1'; uci commit network" \