- Switch from Docker to LXC with Debian bookworm rootfs and native Domoticz binary from GitHub releases (latest/download pattern) - Fix LXC cgroup2 terminal allocation: add lxc.tty.max, lxc.pty.max, cgroup2 device permissions for standard char devices, disable seccomp - Fix PID 1 issue: run domoticz as child process with signal forwarding - Use quoted heredoc with sed placeholders for start script generation - Update LuCI view: Docker → LXC references, add memory usage display - Remove Docker image UCI option, update catalog runtime to "lxc" - Fix streamlit LXC config: same cgroup2/terminal/seccomp fixes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
259 lines
7.2 KiB
Bash
259 lines
7.2 KiB
Bash
#!/bin/sh
|
|
|
|
. /lib/functions.sh
|
|
. /usr/share/libubox/jshn.sh
|
|
|
|
LXC_NAME="domoticz"
|
|
LXC_PATH="/srv/lxc"
|
|
LXC_ROOTFS="$LXC_PATH/$LXC_NAME/rootfs"
|
|
LXC_CONF="$LXC_PATH/$LXC_NAME/config"
|
|
CONFIG="domoticz"
|
|
|
|
lxc_running() {
|
|
lxc-info -n "$LXC_NAME" -s 2>/dev/null | grep -q "RUNNING"
|
|
}
|
|
|
|
lxc_exists() {
|
|
[ -f "$LXC_CONF" ] && [ -d "$LXC_ROOTFS" ]
|
|
}
|
|
|
|
case "$1" in
|
|
list)
|
|
echo '{"status":{},"start":{},"stop":{},"restart":{},"install":{},"uninstall":{},"update":{},"configure_mqtt":{},"configure_haproxy":{},"backup":{},"restore":{"path":"str"},"logs":{"lines":"int"}}'
|
|
;;
|
|
call)
|
|
case "$2" in
|
|
status)
|
|
json_init
|
|
|
|
enabled=$(uci -q get ${CONFIG}.main.enabled)
|
|
port=$(uci -q get ${CONFIG}.main.port)
|
|
data_path=$(uci -q get ${CONFIG}.main.data_path)
|
|
devices_path=$(uci -q get ${CONFIG}.main.devices_path)
|
|
timezone=$(uci -q get ${CONFIG}.main.timezone)
|
|
|
|
# MQTT config
|
|
mqtt_enabled=$(uci -q get ${CONFIG}.mqtt.enabled)
|
|
mqtt_broker=$(uci -q get ${CONFIG}.mqtt.broker)
|
|
mqtt_broker_port=$(uci -q get ${CONFIG}.mqtt.broker_port)
|
|
mqtt_topic_prefix=$(uci -q get ${CONFIG}.mqtt.topic_prefix)
|
|
mqtt_z2m_topic=$(uci -q get ${CONFIG}.mqtt.z2m_topic)
|
|
|
|
# Network/domain config
|
|
domain=$(uci -q get ${CONFIG}.network.domain)
|
|
haproxy=$(uci -q get ${CONFIG}.network.haproxy)
|
|
firewall_wan=$(uci -q get ${CONFIG}.network.firewall_wan)
|
|
|
|
# Mesh config
|
|
mesh_enabled=$(uci -q get ${CONFIG}.mesh.enabled)
|
|
|
|
json_add_boolean "enabled" ${enabled:-0}
|
|
json_add_int "port" ${port:-8080}
|
|
json_add_string "data_path" "${data_path:-/srv/domoticz}"
|
|
json_add_string "devices_path" "${devices_path:-/srv/devices}"
|
|
json_add_string "timezone" "${timezone:-UTC}"
|
|
|
|
json_add_boolean "mqtt_enabled" ${mqtt_enabled:-0}
|
|
json_add_string "mqtt_broker" "${mqtt_broker:-127.0.0.1}"
|
|
json_add_int "mqtt_broker_port" ${mqtt_broker_port:-1883}
|
|
json_add_string "mqtt_topic_prefix" "${mqtt_topic_prefix:-domoticz}"
|
|
json_add_string "mqtt_z2m_topic" "${mqtt_z2m_topic:-zigbee2mqtt}"
|
|
|
|
json_add_string "domain" "${domain:-domoticz.secubox.local}"
|
|
json_add_boolean "haproxy" ${haproxy:-0}
|
|
json_add_boolean "firewall_wan" ${firewall_wan:-0}
|
|
json_add_boolean "mesh_enabled" ${mesh_enabled:-0}
|
|
|
|
# LXC availability
|
|
if command -v lxc-start >/dev/null 2>&1; then
|
|
json_add_boolean "lxc_available" 1
|
|
else
|
|
json_add_boolean "lxc_available" 0
|
|
fi
|
|
|
|
# Container status
|
|
if lxc_running; then
|
|
json_add_string "container_status" "running"
|
|
uptime=$(lxc-info -n "$LXC_NAME" -s 2>/dev/null | head -1)
|
|
json_add_string "container_uptime" "$uptime"
|
|
# Memory from cgroup
|
|
mem_usage=""
|
|
if [ -f "/sys/fs/cgroup/lxc.payload.$LXC_NAME/memory.current" ]; then
|
|
mem_bytes=$(cat "/sys/fs/cgroup/lxc.payload.$LXC_NAME/memory.current" 2>/dev/null)
|
|
if [ -n "$mem_bytes" ] && [ "$mem_bytes" -gt 0 ] 2>/dev/null; then
|
|
mem_mb=$(( mem_bytes / 1048576 ))
|
|
mem_usage="${mem_mb} MB"
|
|
fi
|
|
fi
|
|
json_add_string "memory_usage" "$mem_usage"
|
|
elif lxc_exists; then
|
|
json_add_string "container_status" "stopped"
|
|
json_add_string "container_uptime" ""
|
|
json_add_string "memory_usage" ""
|
|
else
|
|
json_add_string "container_status" "not_installed"
|
|
json_add_string "container_uptime" ""
|
|
json_add_string "memory_usage" ""
|
|
fi
|
|
|
|
# Mosquitto broker status
|
|
if pgrep mosquitto >/dev/null 2>&1; then
|
|
json_add_string "mosquitto_status" "running"
|
|
elif command -v mosquitto >/dev/null 2>&1; then
|
|
json_add_string "mosquitto_status" "stopped"
|
|
else
|
|
json_add_string "mosquitto_status" "not_installed"
|
|
fi
|
|
|
|
# Zigbee2MQTT status
|
|
z2m_running=0
|
|
if [ -f /srv/zigbee2mqtt/alpine/rootfs/run.pid ]; then
|
|
z2m_running=1
|
|
elif pgrep -f zigbee2mqtt >/dev/null 2>&1; then
|
|
z2m_running=1
|
|
fi
|
|
if [ "$z2m_running" = "1" ]; then
|
|
json_add_string "z2m_status" "running"
|
|
z2m_port=$(uci -q get zigbee2mqtt.main.frontend_port)
|
|
json_add_int "z2m_port" ${z2m_port:-8099}
|
|
elif [ -f /etc/config/zigbee2mqtt ]; then
|
|
json_add_string "z2m_status" "stopped"
|
|
json_add_int "z2m_port" 0
|
|
else
|
|
json_add_string "z2m_status" "not_installed"
|
|
json_add_int "z2m_port" 0
|
|
fi
|
|
|
|
# HAProxy vhost status
|
|
if [ "${haproxy:-0}" = "1" ]; then
|
|
vhost_exists=$(uci show haproxy 2>/dev/null | grep "\.domain='${domain:-domoticz.secubox.local}'" | head -1)
|
|
if [ -n "$vhost_exists" ]; then
|
|
json_add_string "haproxy_status" "configured"
|
|
else
|
|
json_add_string "haproxy_status" "pending"
|
|
fi
|
|
else
|
|
json_add_string "haproxy_status" "disabled"
|
|
fi
|
|
|
|
# Disk usage
|
|
dp="${data_path:-/srv/domoticz}"
|
|
if [ -d "$dp" ]; then
|
|
disk_usage=$(du -sh "$dp" 2>/dev/null | cut -f1)
|
|
json_add_string "disk_usage" "${disk_usage:-0}"
|
|
else
|
|
json_add_string "disk_usage" ""
|
|
fi
|
|
|
|
# USB devices
|
|
json_add_array "usb_devices"
|
|
for dev in /dev/ttyUSB* /dev/ttyACM*; do
|
|
[ -e "$dev" ] && json_add_string "" "$dev"
|
|
done
|
|
json_close_array
|
|
|
|
json_dump
|
|
;;
|
|
|
|
start)
|
|
/etc/init.d/domoticz start >/dev/null 2>&1
|
|
echo '{"success":true}'
|
|
;;
|
|
|
|
stop)
|
|
/etc/init.d/domoticz stop >/dev/null 2>&1
|
|
echo '{"success":true}'
|
|
;;
|
|
|
|
restart)
|
|
/etc/init.d/domoticz restart >/dev/null 2>&1
|
|
echo '{"success":true}'
|
|
;;
|
|
|
|
install)
|
|
output=$(/usr/sbin/domoticzctl install 2>&1)
|
|
code=$?
|
|
json_init
|
|
json_add_boolean "success" $((code == 0))
|
|
json_add_string "output" "$output"
|
|
json_dump
|
|
;;
|
|
|
|
uninstall)
|
|
output=$(/usr/sbin/domoticzctl uninstall 2>&1)
|
|
code=$?
|
|
json_init
|
|
json_add_boolean "success" $((code == 0))
|
|
json_add_string "output" "$output"
|
|
json_dump
|
|
;;
|
|
|
|
update)
|
|
output=$(/usr/sbin/domoticzctl update 2>&1)
|
|
code=$?
|
|
json_init
|
|
json_add_boolean "success" $((code == 0))
|
|
json_add_string "output" "$output"
|
|
json_dump
|
|
;;
|
|
|
|
configure_mqtt)
|
|
output=$(/usr/sbin/domoticzctl configure-mqtt 2>&1)
|
|
code=$?
|
|
json_init
|
|
json_add_boolean "success" $((code == 0))
|
|
json_add_string "output" "$output"
|
|
json_dump
|
|
;;
|
|
|
|
configure_haproxy)
|
|
output=$(/usr/sbin/domoticzctl configure-haproxy 2>&1)
|
|
code=$?
|
|
json_init
|
|
json_add_boolean "success" $((code == 0))
|
|
json_add_string "output" "$output"
|
|
json_dump
|
|
;;
|
|
|
|
backup)
|
|
backup_file="/tmp/domoticz-backup-$(date +%Y%m%d-%H%M%S).tar.gz"
|
|
output=$(/usr/sbin/domoticzctl backup "$backup_file" 2>&1)
|
|
code=$?
|
|
json_init
|
|
json_add_boolean "success" $((code == 0))
|
|
json_add_string "path" "$backup_file"
|
|
json_add_string "output" "$output"
|
|
json_dump
|
|
;;
|
|
|
|
restore)
|
|
read -r input
|
|
path=$(echo "$input" | jsonfilter -e '@.path' 2>/dev/null)
|
|
if [ -z "$path" ]; then
|
|
echo '{"success":false,"output":"No backup path specified"}'
|
|
else
|
|
output=$(/usr/sbin/domoticzctl restore "$path" 2>&1)
|
|
code=$?
|
|
json_init
|
|
json_add_boolean "success" $((code == 0))
|
|
json_add_string "output" "$output"
|
|
json_dump
|
|
fi
|
|
;;
|
|
|
|
logs)
|
|
read -r input
|
|
lines=$(echo "$input" | jsonfilter -e '@.lines' 2>/dev/null)
|
|
[ -z "$lines" ] && lines=50
|
|
|
|
logs=$(/usr/sbin/domoticzctl logs "$lines" 2>&1)
|
|
json_init
|
|
json_add_string "logs" "$logs"
|
|
json_dump
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|
|
exit 0
|