ansible lineinfile 关闭selinux
时间: 2024-05-13 09:19:49 浏览: 56
关闭selinux命令
5星 · 资源好评率100%
可以使用以下 Ansible Playbook 来关闭 SELinux 并将其设置为永久关闭:
```
- name: Disable SELinux
hosts: all
become: true
tasks:
- name: Set SELinux to permissive mode
lineinfile:
path: /etc/selinux/config
regexp: '^SELINUX='
line: 'SELINUX=permissive'
backup: yes
- name: Disable SELinux
selinux:
policy: targeted
state: disabled
```
该 Playbook 将在所有主机上运行,并将 SELinux 设置为永久关闭。请注意,这可能会影响系统的安全性,因此在执行此操作之前请确保了解其后果。
阅读全文