16 lines
197 B
Bash
16 lines
197 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# 重启脚本
|
||
|
|
# 创建时间: 2025-09-24T07:01:13.006Z
|
||
|
|
|
||
|
|
echo "🔄 重启WWJCloud应用..."
|
||
|
|
|
||
|
|
# 停止应用
|
||
|
|
./scripts/stop.sh
|
||
|
|
|
||
|
|
# 等待5秒
|
||
|
|
sleep 5
|
||
|
|
|
||
|
|
# 启动应用
|
||
|
|
./scripts/start.sh
|