摘要:
ansible的变量不仅可以是单个的值,也可以为列表。 输出为: 结合循环 结合循环,这个特性就变得很有用;以参数传递列表给playbook,不用在playbook中固定循环的次数与内容。 输出为: 字典变量 变量也可以为字典: 阅读全文
摘要:
模块 Python 模块(Module),是一个 Python 文件,以 .py 结尾,包含了 Python 对象定义和Python语句。 模块能定义 函数 , 类 和 变量 ,模块里也能包含可执行的代码。(模块让你能够有逻辑地组织你的 Python 代码段) import module1 来引入模 阅读全文
摘要:
```
def functionname( parameters ): "函数_文档字符串" function_suite return [expression]
``` 阅读全文
摘要:
[toc] 1、Python标准数据类型 5个标准数据类型: Numbers(数字) String(字符串) Tuple(元组) List(列表) Dictionary(字典) 1.1 Numbers(数字) Python支持四种不同的数字类型: int(有符号整型) long(长整型[也可以代表八 阅读全文
摘要:
```python
class Solution(object): def findComplement(self, num): """ :type num: int :rtype: int """ res=0 i=0 while num>0: if nu... 阅读全文
摘要:
ansible配置文件 ansible.cfg的一点说明 ansible.cfg 配置文件默认为 配置文件里的参数基本上都可以被重新定义在 或者 在 通过参数的形式传递。 ansible在运行的时候会读取配置文件,寻找配置文件的顺序是: 。先找到哪个使用哪个。 大部分的配置默认即可。 少部分需要改动 阅读全文
摘要:
Ansible命令 通过ansible命令使用ansible功能。ansible的命令不多,如下: ansible : 用于非固化需求、临时一次性操作 ansible playbook: 执行编写好的剧本playbook,用于复杂、多步骤、经常重复的操作。 ansible doc: 各模块的说明文档 阅读全文
摘要:
Ansible配置: ansible有两个核心配置文件: ansible.cfg 配置文件和Inventory配置文件 Ansible.cfg配置文件 Inventory机器列表配置 这里介绍 Inventory配置文件 。 Inventory file: Inventory file 机器清单,a 阅读全文