当前位置:   article > 正文

ansible-playbook离线升级centos内核

ansible-playbook离线升级centos内核

概述

内核离线包官网下载地址如下:
地址

实践

ansible目录结构

如对 ansible 不熟悉,离线包下载有问题,请至此地址下载,按本文操作可直接使用。

相关文章链接如下

文章地址
ansible离线安装地址

在这里插入图片描述

关键代码

# centos 7 内核升级 3.10.x  --> 5.4.x
- name: 1.ansible工作目录
  debug:
    msg: "ansible目录是:{{ ansible_work_dir }}"
- name: 2.ansible工作目录(上一层)
  debug:
    msg: "ansible目录是:{{ ansible_work_dir | dirname  }}"
- name: 3.ansible工作目录(上上一层)
  debug:
    msg: "ansible目录是:{{ ansible_work_dir | dirname  | dirname }}"
- name: 执行 kernel 内核升级
  shell: |
    rpm -ivh --replacefiles --replacepkgs *.rpm &&
    A=`sudo awk -F\' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg | grep "CentOS Linux (5.4.274-1.el7.elrepo.x86_64) 7 (Core)" |awk '{print $1}'` &&
    grub2-set-default $A &&
    grub2-mkconfig -o /boot/grub2/grub.cfg
  args:
    chdir: "{{ ansible_work_dir }}/kernel"

- name: 查看所有 kernel 内核
  shell: |
    awk -F\' '$1=="menuentry " {print $2}' /etc/grub2.cfg
  args:
    chdir: "{{ ansible_work_dir }}/kernel"
- name: 重启
  shell: |
    reboot
  args:
    chdir: "{{ ansible_work_dir }}/kernel"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

执行效果

执行如下

[root@ks8u-k8s-test01 k8s-ansible]# ansible-playbook -i hosts  test-kernel.yml 

PLAY [nodes] ***********************************************************************************************************************************************************************

TASK [kernel : 1.ansible工作目录] ******************************************************************************************************************************************************
ok: [ks8u-k8s-test01] => {
    "msg": "ansible目录是:/root/k8s-ansible"
}

TASK [kernel : 2.ansible工作目录(上一层)] *************************************************************************************************************************************************
ok: [ks8u-k8s-test01] => {
    "msg": "ansible目录是:/root"
}

TASK [kernel : 3.ansible工作目录(上上一层)] ************************************************************************************************************************************************
ok: [ks8u-k8s-test01] => {
    "msg": "ansible目录是:/"
}

TASK [执行 kernel 内核升级] **************************************************************************************************************************************************************
[WARNING]: Consider using the yum, dnf or zypper module rather than running 'rpm'.  If you need to use command because yum, dnf or zypper is insufficient you can add 'warn: false'
to this command task or set 'command_warnings=False' in ansible.cfg to get rid of this message.
changed: [ks8u-k8s-test01]

TASK [查看所有 kernel 内核] **************************************************************************************************************************************************************
changed: [ks8u-k8s-test01]

TASK [kernel : 重启] *****************************************************************************************************************************************************************

连接断开
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

在这里插入图片描述

在这里插入图片描述

结束

如有疑问,欢迎评论区留言。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/522872
推荐阅读
相关标签
  

闽ICP备14008679号