I hereby claim:
- I am resmo on github.
- I am resmo (https://keybase.io/resmo) on keybase.
- I have a public key whose fingerprint is 5826 19B1 A4F6 AE8B C58A D848 8306 965B E6D6 331D
To claim this, I am signing this object:
| --- | |
| - hosts: localhost | |
| connection: local | |
| tasks: | |
| - name: foobar | |
| shell: echo foobar | |
| notify: event_foobar | |
| handlers: |
| - hosts: localhost | |
| gather_facts: no | |
| tasks: | |
| - name: copy an ssl cert | |
| shell: echo cert has been changed | |
| notify: | |
| - hosts: localhost | |
| gather_facts: no | |
| handlers: |
| #!/usr/bin/python | |
| import Tkinter as tk | |
| import time | |
| class App(): | |
| def __init__(self): | |
| self.timer = 60 | |
| self.root = tk.Tk() | |
| self.label = tk.Label(text="") | |
| self.label.pack() |
| #!/bin/bash | |
| cp ../ansible-modules-extras/cloud/cloudstack/cs_*.py . | |
| str='from ansible.module_utils.cloudstack import *' | |
| for i in $(ls cs_*.py); do | |
| sed -i -e "/$str/r ansible_cloudstack_utils.py" -e "/$str/d" $i | |
| done |
| Host 10.100.9.* 10.100.209.* | |
| User root | |
| IdentityFile ~/.ssh/id_rsa_cloudstack | |
| StrictHostKeyChecking no | |
| ProxyCommand ssh -q -o ControlPersist=no cloudstack-mgmt.example.com -W %h:3922 |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| OK=0 | |
| WARNING=1 | |
| CRITICAL=2 | |
| UNKNOWN=3 | |
| domain=$1 | |
| if [[ -z "$domain" ]] |
| --- | |
| - hosts: localhost | |
| connection: local | |
| gather_facts: no | |
| remote_user: root | |
| tasks: | |
| - name: test add a record | |
| host: hostname=foobar ip=192.168.123.1 | |
| register: result | |
| failed_when: not result.changed |
| <?php | |
| class Base extends Eloquent { | |
| /** | |
| * @var | |
| */ | |
| public static $timestamps = true; | |
| /** |