WCG-deps-install
1. 下载对应的依赖包 # yumdownloader --downloadonly --downloaddir=. xxx # 提取包内容 # rpm2cpio *.rpm | cpio -div 2. install.sh #!/bin/bash - ########################################################## # wcg-deps-install.sh # version:1.0 # update:20181120 ########################################################## DIR="/home/wcg/WCG-deps" function wcg_deps() { for dir in curl fcgi gsoap lksctp lrzsz vconfig tftp redis spawn-fcgi keepalived openssh nginx net-tools libevent do cd $DIR/$dir && rpm -Uvh *.rpm --force --nodeps & done } function segw_deps() { for dir in segw do cd $DIR/$dir && rpm -Uvh *.……