Ansible
未读
Ansible-command模块和shell模块
ansible command与shell模块 两个模块都是用于执行linux命令的,这对于命令熟悉的工程师来说,用起来非常high。 shell模块与command模块差不多(command模块不能执行一些类似$HOME,>,<,|等符号,但shell可以) https://docs.ansibl
Ansible
未读
Ansible-fetch模块
一、fetch模块 fetch模块与copy模块类似,但作用相反。用于把远程机器的文件拷贝到本地。 https://docs.ansible.com/ansible/latest/modules/fetch_module.html#fetch-module 将group1组机器的/opt/readm
Ansible
未读
Ansible-cron模块
一、cron模块 cron模块用于管理周期性时间任务。 https://docs.ansible.com/ansible/latest/modules/cron_module.html#cron-module | 参数 | 说明 | | ———— | ———————— | | name | 计划任务
Ansible
未读
Ansible-file模块
一、file模块(重点) file模块用于对文件或文件夹相关的操作,主要用来设置文件、链接、目录的属性,或者移除文件、链接、目录,很多其他的模块也会包含这种作用,例如copy,assemble和template。 https://docs.ansible.com/ansible/latest/mod
Ansible
未读
Ansible-hostname模块
一、hostname模块 hostname模块用于修改主机名(注意: 它不能修改/etc/hosts文件) https://docs.ansible.com/ansible/latest/modules/hostname_module.html#hostname-module 将192.168.98
Ansible
未读
Ansible-group模块
一、group模块 group模块用于管理用户组和用户组属性。 https://docs.ansible.com/ansible/latest/modules/group_module.html#group-module | 参数 | 说明 | | ———————- | ———— | | name=
Ansible
未读
Ansible-playbook剧本
一、playbook介绍 playbook(剧本): 是ansible用于配置,部署,和管理被控节点的剧本。 参考:https://docs.ansible.com/ansible/latest/user_guide/playbooks_intro.html 使用的格式为yaml格式(saltsta
Ansible
未读
Ansible-role
假设我们要写一个playbook来安装管理lamp环境,那么这个playbook就会写很长。所以我们希望把这个很大的文件分成多个功能拆分, 分成apache管理,php管理,mysql管理,然后在需要使用的时候直接调用就可以了,以免重复写。就类似编程里的模块化的概念,以达到代码复用的效果。 一、ro
Ansible
未读
Ansible-script模块
一、script模块 如何通过ansible执行一个脚本:lamp安装脚本 script模块:用于在远程机器上执行本地脚本。 https://docs.ansible.com/ansible/latest/modules/script_module.html#script-module 在manag
Ansible
未读
Ansible-stat模块
一、stat模块 stat模块类似linux的stat命令,用于获取文件的状态信息。 https://docs.ansible.com/ansible/latest/modules/stat_module.html#stat-module 获取/etc/fstab文件的状态信息 [root@mana