You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
347 B
23 lines
347 B
2 months ago
|
#!/bin/bash
|
||
|
|
||
|
cd /home/pi/smp_pc|| exit
|
||
|
|
||
|
|
||
|
# 检测某个文件是否存在
|
||
|
if [ -f smp_coder/user.txt ]; then
|
||
|
echo "User file exists"
|
||
|
else
|
||
|
sudo myenv/bin/python smp_coder/mqtt_smp.py
|
||
|
fi
|
||
|
|
||
|
if [ $? -eq 0 ]; then
|
||
|
echo "MQTT SMP is running"
|
||
|
else
|
||
|
echo "MQTT SMP is not running"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
sudo myenv/bin/python smp_coder/extur_smp.py
|
||
|
|
||
|
|