shell脚本:自动搭建yum

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本:自动搭建yum相关的知识,希望对你有一定的参考价值。

1编写脚本
[[email protected] ~]# vim /root/yum.sh
脚本内容:
#!/bin/bash
rm -rf /etc/yum.repos.d/*
echo "[110]
name=110
baseurl=http://192.168.4.254/rhel7 //yum源看实际情况更改,最好要使用网络yum源,确保每台安装主机可以连接
enabled=1
gpgcheck=0 " > /etc/yum.repos.d/110.repo
yum clean all &> /dev/null
echo "YUM已经搭建完成"
echo "共有软件包:"
yum repolist | tail -1
[[email protected] ~]# chmod +x /root/yum.sh

2实现结果
[[email protected] ~]# ./yum.sh
YUM已经搭建完成
共有软件包:
repolist: 4,620

以上是关于shell脚本:自动搭建yum的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本:自动搭建yum

shell脚本的基础常识及yum仓库的自动搭建

shell脚本基础变量

搭建yum仓库脚本

RAC环境部署自动化shell脚本

centos一键部署Lamp,shell脚本和搭建教程