1 Star 0 Fork 0

OPLG / DataKit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ota.sh 425 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# Update DataKit if new version available
update_log=/usr/local/datakit/update.log
datakit --check-update --accept-rc-version --update-log $update_log
if [[ $? == 42 ]]; then
echo "update now..."
sudo -- sh -c "curl https://static.dataflux.cn/datakit/installer-darwin-amd64 -o dk-installer &&
chmod +x ./dk-installer &&
./dk-installer -upgrade -install-log "${update_log}" &&
rm -rf ./dk-installer"
fi
1
https://gitee.com/oplg/datakit.git
git@gitee.com:oplg/datakit.git
oplg
datakit
DataKit
main

搜索帮助