推荐原生模块:大部分幂等性,能重复执行。
常看所有模块:3k个
https://docs.ansible.com/ansible/2.9/modules/list_of_all_modules.html 找关键字
常见重要模块: service selinux hosname file copy cron yum script shell
使用方式:
1、命令行 : ansible all -m shell -a "date"
2、编辑yaml文件,通过执行ansible-playbook
- name:get date shell: date
例子:
编辑文件:/etc/ansible/roles/close_selinux.yaml
--- - hosts: '{{ target }}' gather_facts: no remote_user: root tasks: - name: Disable SELinux selinux: state: disabled
执行命令
ansible-playbook close_selinux.yaml -e target=client01
或者命令行
ansible client02 -m selinux -a "state=disabled"
标签:shell,selinux,yaml,ansible,playbook,模块 From: https://www.cnblogs.com/xiangyu5945/p/18134739