目录
- 概述
- 实践
- ansible目录结构
- 关键代码
- 执行效果
- 结束
概述
内核离线包官网下载地址如下:
地址
实践
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"
执行效果
执行如下
[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 : 重启] *****************************************************************************************************************************************************************
连接断开
结束
如有疑问,欢迎评论区留言。