feat(脚本): 添加openssl安装逻辑

pull/1176/head
Anthony 2025-06-07 17:26:18 +08:00
parent 9fc5c833b7
commit 23ab06c0a0
1 changed files with 5 additions and 0 deletions

View File

@ -1108,6 +1108,11 @@ installTools() {
${installType} binutils >/dev/null 2>&1
fi
if ! find /usr/bin /usr/sbin | grep -q -w openssl; then
echoContent green " ---> 安装openssl"
${installType} openssl >/dev/null 2>&1
fi
if ! find /usr/bin /usr/sbin | grep -q -w ping6; then
echoContent green " ---> 安装ping6"
${installType} inetutils-ping >/dev/null 2>&1