// // WARNING!! This file is overwritten by the Block Styler while generating // the automation code. Any modifications to this file will be lost afte ...
分类:
其他好文 时间:
2020-05-30 21:56:21
阅读次数:
100
super-graph 的配置可以通过yaml 以及json格式,同时提供了基于环境变量的管理(以GO_ENV开头) 比如GP_ENV=prod 使用prod.yaml 对于GO_ENV-dev 的使用dev.yaml ,配置文件也可以通过-path <folder> 指定 完整配置 参考配置文件 ...
分类:
其他好文 时间:
2020-05-23 18:06:43
阅读次数:
57
Automation自动化需要安装Puppetclass nginx { package {"nginx": ensure => 'installed',} #确认Nginx已安装 service {"nginx": ensure => 'true', hasrestart => 'true', # ...
分类:
其他好文 时间:
2020-05-22 19:48:34
阅读次数:
72
参考:https://juejin.im/post/5dac14c0f265da5b8c03cabe 安装一些必要的系统工具: yum install -y yum-utils device-mapper-persistent-data lvm2 添加软件源信息: yum-config-manage ...
分类:
其他好文 时间:
2020-05-22 12:41:00
阅读次数:
69
说明 crypt ( string $str [, string $salt ] ) : string crypt() 返回一个基于标准 UNIX DES 算法或系统上其他可用的替代算法的散列字符串。 salt 参数是可选的。然而,如果没有salt的话,crypt()创建出来的会是弱密码。 php ...
分类:
其他好文 时间:
2020-05-21 16:26:48
阅读次数:
66
import urllib.request,urllib.parse,json class saltAPI(): def __init__(self): self.url = 'http://10.10.2.11:8000' self.data = {'username' : 'salt-api', ...
分类:
编程语言 时间:
2020-05-20 18:47:33
阅读次数:
53
在UiPath中下载Outlook电子邮件附件Outlook电子邮件自动化教程UiPathRPAhttps://www.bilibili.com/video/BV1oK411L72T 在UiPath中获取Outlook邮件Outlook Automation UiPath RPAhttps://ww ...
分类:
Web程序 时间:
2020-05-19 10:46:07
阅读次数:
71
salt-key认证过程1、minion端生成一个秘钥对,并产生一个ID值(id值存放在/etc/salt/minion_id中),minion服务会安装ID值命名的公钥发送给master,直到接受为止;2、master认证完毕后,会将minion端发送来的,以ID值命名的公钥存放在/etc/salt/pki/master/minions目录中;3、master认证完毕后,会将自身的公钥发送给mi
分类:
其他好文 时间:
2020-05-18 18:53:40
阅读次数:
97
使用UI Automation遍历窗口的所有控件标题和类 #include <Windows.h> #include <stdio.h> #include <UIAutomation.h> IUIAutomation* pClientUIA; IUIAutomationElement* pRootE ...