主要用于将自签CA证书更新到测试机的linux系统中,同时也支持将系统CA证书库更新到最新版。
更新系统证书到最新也可以使用apt update && apt upgrade -y或yum makecache && yum update -y直接更新系统。
脚本命令
使用curl命令下载脚本
1 | curl - - insecure - sSL - o update_ca_cert.sh https: / / down.baota.me / system / linux / tools / update_ca_cert.sh && bash update_ca_cert.sh |
使用wget命令下载脚本
1 | wget - - no - check - certificate - qO update_ca_cert.sh https: / / down.baota.me / system / linux / tools / update_ca_cert.sh && bash update_ca_cert.sh |
使用自签证书
1.固定文件路径
脚本默认会将/tmp/cacert.pem更新到系统中
2.指定文件
如您的文件路径为/root/cacert.pem 可以将文件路径添加到$1参数中 例子
1 | bash update_ca_cert.sh / root / cacert.pem |