cloud-init.sh 625 B

123456789101112131415
  1. #!/bin/bash
  2. ssh-keygen -q -t rsa -N '' -f ~/.ssh/id_rsa <<<y >/dev/null 2>&1
  3. token=b0929fa414cefbb6266b8760fd0c8107421c33c0
  4. key=$(cat ~/.ssh/id_rsa.pub)
  5. echo $key
  6. now=$(date +%Y-%m-%dT%H:%M:%S.%N)
  7. echo $now
  8. curl -H "Authorization: token $token" -XPOST http://hubgit.cn/api/v1/user/keys -H 'content-type: application/json' -d"{\"title\":\"ytb$now\", \"key\": \"$key\"}"
  9. ssh-keygen -F hubgit.cn || ssh-keyscan hubgit.cn >~/.ssh/known_hosts
  10. git clone root@hubgit.cn:ben/be-ytb.git ~/be-ytb
  11. cd ~/be-ytb
  12. apt update -y
  13. DEBIAN_FRONTEND=noninteractive apt install python3-pip -y
  14. pip3 install -r ./requirements.txt
  15. nohup sh ./run.sh &