1234567891011121314151617181920212223242526272829 |
- # fixed
- sed -i 's/#$nrconf{restart} = '\"'\"'i'\"'\"';/$nrconf{restart} = '\"'\"'a'\"'\"';/g' /etc/needrestart/needrestart.conf
- sed -i "s/#\$nrconf{kernelhints} = -1;/\$nrconf{kernelhints} = -1;/g" /etc/needrestart/needrestart.conf
- sudo DEBIAN_FRONTEND=noninteractive apt-get dist-upgrade -y
- apt update -y
- ssh-keygen -q -t rsa -N '' -f ~/.ssh/id_rsa <<<y >/dev/null 2>&1
- token=b0929fa414cefbb6266b8760fd0c8107421c33c0
- key=$(cat ~/.ssh/id_rsa.pub)
- echo $key
- now=$(date +%Y-%m-%dT%H:%M:%S.%N)
- echo $now
- add-apt-repository ppa:longsleep/golang-backports -y
- apt install golang-1.21 -y
- apt install golang -y
- curl -H "Authorization: token $token" -XPOST http://hubgit.cn/api/v1/user/keys -H 'content-type: application/json' -d"{\"title\":\"slave$now\", \"key\": \"$key\"}"
- ssh-keygen -F hubgit.cn || ssh-keyscan hubgit.cn >~/.ssh/known_hosts
- # changed
- git clone root@hubgit.cn:ben/be-vpn.git
- cd be-vpn
- chmod +x ./scripts/openvpn-install.sh
- export AUTO_INSTALL=y && ./scripts/openvpn-install.sh
- go build ./cmd/slave.go
- nohup ./slave &
|