增加openresty

master
pan 4 years ago
parent 7c03e86a06
commit d25abefc3c
  1. 4
      shell/killNode
  2. 12
      shell/updateRisk

@ -1,8 +1,8 @@
#!/bin/sh #!/bin/sh
#杀死进程 #杀死进程
if [ -e pid ] if [ -e $1.pid ]
then then
p=`cat pid` p=`cat $1.pid`
kill -9 $p kill -9 $p
if [ $? -eq 0 ] if [ $? -eq 0 ]
then then

@ -22,18 +22,8 @@ function run(){
if [ ! -e $1 ] if [ ! -e $1 ]
then then
git clone git@gogs.kirito.cool:panqihua/$1.git git clone git@gogs.kirito.cool:panqihua/$1.git
isUpdate=0
else
isUpdate=1
fi fi
cd $1 && git reset --hard && git pull && yarn && chmod +x run.sh && killNode cd $1 && git reset --hard && git pull && yarn && chmod +x run.sh && killNode $1
if [ $isUpdate -eq 1 ]
then
url="http://127.0.0.1:3000/finsh"
echo "成功回调地址:$url"
curl -X POST -d "name=$1" $url
fi
} }
run $1 run $1

Loading…
Cancel
Save