Files
agt-build/build/opt/agt/bin/restart.sh
2025-09-28 18:37:46 +08:00

13 lines
205 B
Bash

#!/bin/bash
echo "[INFO] 开始重启服务..."
# ==== 检查 root 权限 ====
if [ "$(id -u)" -ne 0 ]; then
echo "请使用 root 权限运行此脚本"
exit 1
fi
sudo ./shutdown.sh
sudo ./start.sh