cipher key: 0123456789abcdef0123456789abcdef
IV: 0123456789ABCDEF
padding character: fs (ASCII=34 -> FILE SEPARATOR)
secret message: this information is confidential, for your eyes only
| private bool JoeySequenceEqual(IEnumerable<int> first, IEnumerable<int> second) | |
| { | |
| var firstEnumerator = first.GetEnumerator(); | |
| var secondEnumerator = second.GetEnumerator(); | |
| var result = true; | |
| while (firstEnumerator.MoveNext() ) | |
| { | |
| if (secondEnumerator.MoveNext()) | |
| { | |
| if (firstEnumerator.Current != secondEnumerator.Current) |
| ansible-playbook 2.8.4 | |
| config file = None | |
| configured module search path = ['/Users/tsengeagle/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] | |
| ansible python module location = /Users/tsengeagle/.pyenv/versions/3.7.0/lib/python3.7/site-packages/ansible | |
| executable location = /Users/tsengeagle/.pyenv/versions/3.7.0/bin/ansible-playbook | |
| python version = 3.7.0 (default, Nov 21 2018, 00:03:23) [Clang 10.0.0 (clang-1000.10.44.4)] | |
| No config file found; using defaults | |
| setting up inventory plugins | |
| host_list declined parsing /Users/tsengeagle/source/awx/installer/inventory as it did not pass it's verify_file() method | |
| script declined parsing /Users/tsengeagle/source/awx/installer/inventory as it did not pass it's verify_file() method |
| # It's not recommended to modify this file in-place, because it will be | |
| # overwritten during package upgrades. If you want to customize, the | |
| # best way is to create a file "/etc/systemd/system/postgresql.service", | |
| # containing | |
| # .include /lib/systemd/system/postgresql.service | |
| # ...make your changes here... | |
| # For more info about custom unit files, see | |
| # http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F | |
| # For example, if you want to change the server's port number to 5433, |