yum-config-manager
命令是在 yum-utils
软件包中的。
某些发行版本中默认是不安装的,此时判断没有 yum-config-manager
命令,手动安装下就行了。1 2 3 4 5 6 7 8
| if [ $SYS == 'centos' ];then path=`command -v yum-config-manager` if [ $path ];then echo -e "yum-utils\tinstall on $path" else sudo yum install -y yum-utils fi fi
|