生活的美妙在于,不知道一下秒是惊艳还是伤神,时光流转,珍惜现在的拥有的时光
全部博文(276)
发布时间:2017-03-28 16:21:28
In [15]: a = [1,2,3,4,5,5,6,7,7]In [16]: a.index(5)Out[16]: 4In [17]: a.index(6)Out[17]: 6In [18]: b = collect_common.unique_list(a)In [19]: a.index(5)Out[19]: 4In [20]: a.index(6)Out[20]: 5可见list去重后index相应的也进行了变化。......【阅读全文】
发布时间:2017-03-22 11:38:20
# yum search --showduplicates salt...salt-2015.5.10-2.el6.noarch : A parallel remote execution systemsalt-2015.5.10-2.el6.noarch : A parallel remote execution systemsalt-2016.11.3-1.el6.noarch : A parallel remote execution system...# yum downgrade salt降级指定版本后面写查询到的软件包全名。.........【阅读全文】
发布时间:2017-03-21 20:14:57
pytho 2.6 salt state模块pip报AttributeError: 'Requirement' object has no attribute 'project_name'pip install --upgrade pipDEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6回退到0.7版本解决。.........【阅读全文】
发布时间:2017-03-15 15:01:35
安装python-devel包解决这个问题# pip install netifaces DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6Collecting netifaces Using cached netifaces-0.10.5.tar.gzIns.........【阅读全文】
发布时间:2017-03-13 15:05:28
[root@sys_228 ~]# salt --versions-reportSalt Version: Salt: 2015.8.8.2...这个版本的nodegroup会有匹配问题......【阅读全文】