1 Star 0 Fork 0

liulinhui/swarm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
initServer.sh 838 Bytes
一键复制 编辑 原始数据 按行查看 历史
liulinhui 提交于 2021-03-14 23:44 . b部署节点
#!/usr/bin/env sh
beePath='/opt/bee'
mkdir -p $beePath
update() {
echo '开始更新'
apt update
apt install openssl jq git curl wget -y
echo '更新结束'
}
installBeeClef() {
wget https://bbq-chhain.oss-cn-shanghai.aliyuncs.com/files/20191128/bee-clef_0.4.9_amd64.deb
dpkg -i bee-clef_0.4.9_amd64.deb
service bee-clef restart
rm -rf bee-clef_0.4.9_amd64.deb*
}
installBeeClient() {
wget https://bbq-chhain.oss-cn-shanghai.aliyuncs.com/files/20191128/bee_0.5.2_amd64.deb
dpkg -i bee_0.5.2_amd64.deb
rm -rf bee_0.5.2_amd64.deb*
sleep 3
service bee stop
systemctl disable bee.service
}
initCashOutSh() {
# shellcheck disable=SC2164
cd $beePath
wget -O cashout.sh https://gitee.com/liulinhui1994/swarm/raw/main/cashout.sh
chmod +x cashout.sh
}
update
installBeeClef
installBeeClient
initCashOutSh
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liulinhui1994/swarm.git
git@gitee.com:liulinhui1994/swarm.git
liulinhui1994
swarm
swarm
main

搜索帮助