ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

利用playbook配置不同版本系统的yum源

2021-01-14 13:02:55  阅读:226  来源: 互联网

标签:centos7 repo ansible yum playbook 版本 root centos8


利用playbook配置不同版本系统的yum源

环境说明:

主机名和IP地址 系统版本
ansible 192.168.153.10 redhat 8.2
redhat8 192.168.153.11 redhat 8.2
centos8 192.168.153.12 centos 8
centos7 192.168.153.13 centos7

项目结构

[root@ansible yum]# tree
.
├── ansible.cfg
├── inventory
├── scripts
│   ├── yum_centos7.sh
│   └── yum_centos8.sh
└── yum.yml

1 directory, 5 files

准备工作

本次环境yum源是阿里云官方镜像网站

//映射主机名IP
[root@ansible ~]# vim /etc/hosts

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.153.10 ansible
192.168.153.11 redhat8
192.168.153.12 centos8
192.168.153.13 centos7

//编写inventory清单
[root@ansible ~]# mv /etc/ansible/inventory yum/   //把清单文件移到yum目录下
[root@ansible yum]# vim inventory 

[redhat]
redhat8

[centos]
centos7
centos8

//修改清单的位置
[root@ansible ~]# mv /etc/ansible/ansible.cfg yum/    //把ansible.cfg移到yum目录下
[root@ansible yum]# vim ansible.cfg 

# some basic default values...

inventory      = ./inventory   //当前目录的inventory

//设置免密登录
[root@ansible yum]# ssh-keygen -t rsa     //生成密钥,直接回车
[root@ansible yum]# ssh-copy-id root@redhat8
[root@ansible yum]# ssh-copy-id root@centos8
[root@ansible yum]# ssh-copy-id root@centos7


//测试能否ping通
[root@ansible yum]# ansible all -m ping
redhat8 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": false,
    "ping": "pong"
}
centos8 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": false,
    "ping": "pong"
}
centos7 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": false,
    "ping": "pong"
}

配置yum脚本

//编写centos8的yum配置批处理
[root@ansible yum]# vim scripts/yum_centos8.sh 

#!/bin/bash
  
#centos8
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's|$releasever|8|' /etc/yum.repos.d/CentOS-Base.repo

#epel
yum install -y https://mirrors.aliyun.com/epel/epel-release-latest-8.noarch.rpm
sed -i 's|^#baseurl=https://download.fedoraproject.org/pub|baseurl=https://mirrors.aliyun.com|' /etc/yum.repos.d/epel*
sed -i 's|^metalink|#metalink|' /etc/yum.repos.d/epel*

#yum clean
yum clean all
yum makecache

//编写centos7的yum配置批处理
[root@ansible yum]# vim scripts/yum_centos7.sh 

#!/bin/bash
  
#centos7
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's|$releasever|7|' /etc/yum.repos.d/CentOS-Base.repo

#epel
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
sed -i 's|$releasever|7|' /etc/yum.repos.d/epel*

#yum clean
yum clean all
yum makecache

编写yum的playbook

[root@ansible yum]# vim yum.yml 

---
- name: yum
  hosts: all
  tasks:

    - name: centos8
      script: ./scripts/yum_centos8.sh
      when: >
        ( ansible_facts["distribution"] == "RedHat" and
          ansible_facts["distribution_major_version"] == "8" )
        or
        ( ansible_facts["distribution"] == "CentOS" and
          ansible_facts["distribution_major_version"] == "8" )

    - name: centos7
      script: ./scripts/yum_centos7.sh
      when: >
        ( ansible_facts["distribution"] == "RedHat" and
          ansible_facts["distribution_major_version"] == "7" )
        or
        ( ansible_facts["distribution"] == "CentOS" and
          ansible_facts["distribution_major_version"] == "7" )

执行剧本

[root@ansible yum]# ansible-playbook yum.yml

PLAY [yum] *************************************************************************

TASK [Gathering Facts] *************************************************************
ok: [redhat8]
ok: [centos8]
ok: [centos7]

TASK [centos8] *********************************************************************
changed: [redhat8]
changed: [centos8]
changed: [centos7]

TASK [centos7] *********************************************************************
skipping: [redhat8]
skipping: [centos8]
skipping: [centos7]

PLAY RECAP *************************************************************************
centos8                    : ok=2    changed=1    unreachable=0    failed=0    skipped=1    rescued=0    ignored=0   
centos7                    : ok=2    changed=1    unreachable=0    failed=0    skipped=1    rescued=0    ignored=0   
redhat8                    : ok=2    changed=1    unreachable=0    failed=0    skipped=1    rescued=0    ignored=0

验证一下

//在centos7主机上查看一下
[root@centos7 ~]# yum repolist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
repo id                 repo name                                               status
base/x86_64             CentOS-7 - Base - mirrors.aliyun.com                    10,072
epel/x86_64             Extra Packages for Enterprise Linux 7 - x86_64          13,492
extras/x86_64           CentOS-7 - Extras - mirrors.aliyun.com                     448

//在centos8主机上查看一下
[root@centos8 ~]# yum repolist
Repository AppStream is listed more than once in the configuration
Repository extras is listed more than once in the configuration
Repository PowerTools is listed more than once in the configuration
Repository centosplus is listed more than once in the configuration
repo id              repo name
AppStream            CentOS-8 - AppStream
base                 CentOS-8 - Base - mirrors.aliyun.com
epel                 Extra Packages for Enterprise Linux 8 - x86_64
epel-modular         Extra Packages for Enterprise Linux Modular 8 - x86_64
extras               CentOS-8 - Extras - mirrors.aliyun.com

//在redhat8主机查看一下
[root@redhat8 ~]# yum repolist
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
repo id              repo name
AppStream            CentOS-8 - AppStream - mirrors.aliyun.com
base                 CentOS-8 - Base - mirrors.aliyun.com
epel                 Extra Packages for Enterprise Linux 8 - x86_64
epel-modular         Extra Packages for Enterprise Linux Modular 8 - x86_64
extras               CentOS-8 - Extras - mirrors.aliyun.com

标签:centos7,repo,ansible,yum,playbook,版本,root,centos8
来源: https://www.cnblogs.com/leixixi/p/14276612.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有