I hereby claim:
- I am goldyfruit on github.
- I am goldyfruit (https://keybase.io/goldyfruit) on keybase.
- I have a public key ASAN_QQz2Da2cjKdYAWjQnpMen0c9qlbEfGYszPEuA0xBQo
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import json | |
| data = { | |
| "openstack": { | |
| "children": [ | |
| "controller" | |
| ], | |
| "vars": { |
| --- | |
| - name: Ansible tests playbook | |
| hosts: all | |
| remote_user: root | |
| tasks: | |
| - name: Check if mariadb-libs-5.5.44-2.el7.centos.x86_64 package is installed | |
| yum: | |
| list=mariadb-libs-5.5*x86_64 | |
| register: pkg |
| --- | |
| - name: Ansible tests playbook | |
| hosts: all | |
| remote_user: root | |
| tasks: | |
| - name: Running PKI setup and creating a tarball with certificates | |
| shell: | |
| keystone-manage pki_setup --keystone-user keystone --keystone-group keystone && \ | |
| cd /etc/keystone/ && \ |
| # (c) 2016, Gaetan Trellu (goldyfruit) <[email protected]> | |
| # (c) 2014, Pierre-Yves KERVIEL <[email protected]> | |
| # | |
| # Ansible is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # Ansible is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| - name: Creating HAproxy cloned resource | |
| pcs_resource: | |
| command=create | |
| resource_id=haproxy | |
| type=systemd:haproxy | |
| clone=true | |
| clone_max=3 | |
| disable=true | |
| args: | |
| operations: |
I hereby claim:
To claim this, I am signing this object:
| /* ZyXEL prestige 660HW series password calculator by brainstorm | |
| * Thanks to http://www.adslayuda.com/Zyxel650-9.html authors | |
| * | |
| * Example usage: | |
| * | |
| * Router: | |
| * ====== | |
| * | |
| * ATSE | |
| * 0028D6DF1C03 |
| def main(**kwargs): | |
| print("Hello Qinling \o/") |
| def main(**kwargs): | |
| msg = "Hello Qinling \o/" | |
| return msg |
| import json | |
| from IPy import IP | |
| def details(cidr="192.168.0.0/24", **kwargs): | |
| network = IP(cidr) | |
| version = network.version() | |
| iptype = network.iptype().lower() | |
| reverse = network.reverseName() | |
| prefix = network.prefixlen() |