17 lines
565 B
Bash
17 lines
565 B
Bash
#!/bin/bash
|
|
echo "================================ update serverlite ==============================="
|
|
cd /var/www
|
|
sudo chmod -R 0777 html
|
|
cd html
|
|
sudo rm -rf BiFace_Server_Lite
|
|
git clone http://gitea.beetai.com/dongpd/BiFace_Server_Lite.git
|
|
sudo chmod -R 0777 BiFace_Server_Lite
|
|
cd /root
|
|
sudo rm -rf BiFace_Server_Config_API
|
|
git clone http://gitea.beetai.com/dongpd/BiFace_Server_Config_API.git
|
|
cd BiFace_Server_Config_API
|
|
#npm install
|
|
sudo bash /etc/rc.local
|
|
echo "================================ update serverlite done!!! ==============================="
|
|
exit 0
|