Files
vps-management-bot/scripts/boot-start.sh
2026-03-21 01:10:53 +08:00

16 lines
510 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/data/data/com.termux/files/usr/bin/bash
# Termux:Boot 开机自启脚本
# 修复权限Android 14 重启后会重置)
/system/bin/chmod +x /data/data/com.termux/files/usr/bin/* 2>/dev/null
/system/bin/chmod +x /data/data/com.termux/files/usr/libexec/* 2>/dev/null
# 启动 SSH
sshd
# 启动 OpenClaw
cd ~/.openclaw/workspace && nohup openclaw gateway run >> ~/.openclaw/gateway.log 2>&1 &
# 启动数据收集循环
nohup bash ~/.openclaw/workspace/scripts/collect-phone-data-loop.sh &>/dev/null &