ansible相关

command模块: 支持基本的shell命令,但不支持管道操作. ansible -i /etc/ansible/hosts -m command -a ‘ls /root’ 所有服务器都下载redis安装包,存放路径为/opt ansible -i /etc/ansible/hosts all -m command -a ‘wget -c http://download.redis.io/releases/redis-5.0.7.tar.gz -P /opt’ 查看下载的redis安装包 ansible…

saltstack相关

假设: salt-server: AMH salt-minion: AMH , client1741 , cdn-nginx , cdn-varnish 查看salt-minion是否 在线 [root@AMH ~]# salt ‘*’ test.ping cdn-nginx: True client1741: True AMH: True cdn-varnish:…

几个python scripts

统计CPU信息 #!/usr/bin/env Python from __future__ import print_function from collections import OrderedDict import pprint def cpuinfo(): ”’ Return the information in /proc/cpuinfo as a dictionary in…

各种 Python 库/模块/工具

各种 Python 库/模块/工具 1 算法 1.1 字符串处理 re 正则表达式的标准库。 StringIO / cStringIO 以读写文件的方式来操作字符串(有点类似于内存文件)。 cStringIO 是 C 语言实现的,提供高性能;而 StringIO 是 Python 实现的,提供 Unicode 兼容性。 chardet chardet…