1 Star 0 Fork 0

linjiangyu/hp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.sh 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
linjiangyu 提交于 2023-06-24 18:49 . none
#!/bin/bash
# @ORG: KunTower
# @Date: 20230621
# @Modify: Tianlin
dist=$(cat /etc/os-release | head -1 | awk -F'=' '{ print $2 }' | cut -d' ' -f1 | cut -d'"' -f2 | tr '[:upper:]' '[:lower:]')
version=$(cat /etc/os-release | grep VERSION_ID | grep -o '[0-9]*' | head -1)
kernel=$(uname -r | cut -d. -f1)
kerbasearch=$(uname -p)
root() {
[ $(id -u) -ne 0 ] && echo "$(red '当前不是root用户')" && exit 1
}
check_include_src_mod(){
for modlist in $@
do
if [ -f ./src/${modlist}.sh ];then
. ./src/${modlist}.sh 2>&1 &> /dev/null
else
echo -e "\033[31mfailed found mod in ./src/${modlist}.sh"
fi
done
}
MAIN(){
# src/下模块导入
check_include_src_mod color logo prestart ui hive rsync gatcher
root
logo
while [ -z $OPTIONS ]
do
OPTIONS=$(whiptail --title "KunTower" --menu "检测到系统发行版为$(echo $dist | tr '[[:lower:]]' '[[:upper:]]')系统,如果有误请自己选择" 15 60 4 \
"1" "CentOS" \
"2" "!Debian" \
"3" "!Ubuntu" 3>&1 1>&2 2>&3
)
[ $? -ne 0 ] && exit 0
done
case $OPTIONS in
1)
NODES
soft
sshkeyga
chy
sh ./centos/main.sh
;;
2)
;;
3)
;;
esac
}
MAIN
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linjiangyu2/hp.git
git@gitee.com:linjiangyu2/hp.git
linjiangyu2
hp
hp
main

搜索帮助