This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getSoapHeader($login, $password) { | |
$wssWssecuritySecextNamespace = 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd'; | |
$wssWssecurityUtilityNamespace = 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd'; | |
$token = new stdClass(); | |
$token->Username = new SoapVar( | |
$login, | |
XSD_STRING, | |
null, | |
null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@ns01 named]# nsupdate -d | |
> server 127.0.0.1 | |
> zone build.company.net | |
> key hmac-md5:local DowgVbhDayyW7jJGq6+scE1I3/E6NCAAAAAA7wRnijkjN4jKWdL5uIIfxsVg1VKZfEdfw82eLPvAwOf/UI666A== | |
> update add www 86400 a 10.210.10.123 | |
> send | |
Sending update to 127.0.0.1#53 | |
Outgoing update query: | |
;; ->>HEADER<<- opcode: UPDATE, status: NOERROR, id: 12959 | |
;; flags:; ZONE: 1, PREREQ: 0, UPDATE: 1, ADDITIONAL: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
remy@POADV175: ~/work/ansible master ⚡ $ ansible-playbook itop.yml -vvvv [12:22:05] | |
Using /etc/ansible/ansible.cfg as config file | |
statically included: /home/remy/work/ansible/roles/common/tasks/openssh.yml | |
statically included: /home/remy/work/ansible/roles/common/tasks/disableIPv6.yml | |
statically included: /home/remy/work/ansible/roles/common/tasks/swappiness.yml | |
statically included: /home/remy/work/ansible/roles/common/tasks/packages.yml | |
statically included: /home/remy/work/ansible/roles/common/tasks/entropy.yml | |
statically included: /home/remy/work/ansible/roles/common/tasks/vm.yml | |
statically included: /etc/ansible/roles/geerlingguy.mysql/tasks/variables.yml | |
statically included: /etc/ansible/roles/geerlingguy.mysql/tasks/configure.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec_helper' | |
describe 'profiles::docker' do | |
context 'supported operating systems' do | |
on_supported_os.each do |os, facts| | |
context "on #{os}" do | |
let(:facts) do | |
facts.merge({ | |
:clientcert => 'docker', | |
}) |
NewerOlder