新注册的用户请输入邮箱并保存,随后登录邮箱激活账号。后续可直接使用邮箱登录!

Commit 24792235 authored by shaozhuguang's avatar shaozhuguang

chore: fix error with softhsm2 install --story=0

No related merge requests found
......@@ -11,9 +11,9 @@ function install() {
sudo apt-get install -y softhsm2
elif [ "$os_name" == "Ubuntu" ] && [ "$os_version" == "20.04" ]; then
sudo apt-get install -y softhsm2
elif [ "$os_name" == "CentOS" ] && [ "$os_version" == "7" ]; then
elif [ "$os_name" == "CentOS" ] && [ $os_version == 7* ]; then
sudo yum install -y softhsm2
elif [ "$os_name" == "CentOS" ] && [ "$os_version" == "8" ]; then
elif [ "$os_name" == "CentOS" ] && [ $os_version == 8* ]; then
sudo dnf install -y softhsm2
else
echo "Unsupported OS"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment