aspe:keyoxide.org:MCSGG3MY54T4EUDWVC5VMRQHZA
This file contains 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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mDMEXMHRIRYJKwYBBAHaRw8BAQdA8tEb5wQLPaBIA0EN42snpirRCZ6TLlZgmVl1 | |
WLosoba0P0lzbWFlbCBBcmVuemFuYSAoTmV3IEVDQyBrZXlzIGZvciBBcmVuemFu | |
YSkgPGlzbWFAYXJlbnphbmEub3JnPoiZBBMWCgBBAhsDBQkFo5qABQsJCAcDBRUK | |
CQgLBRYCAwEAAh4BAheAFiEEsq0ED4jsgS9qu4OS6FUS5xLM0MYFAlzB1gUCGQEA | |
CgkQ6FUS5xLM0Mb+hQEAjYVCG8gUyMGZpg/QeiZ+Pch54ouHkwBpqzF6r7G1NtAA | |
/3Bf7OrAho0dBcUbJIGNEoGVQuqHOaV3WTvxLJ6r/aQPtCtJc21hZWwgQXJlbnph | |
bmEgPGFyZW56YW5hQGNodWJicy5zb2x1dGlvbnM+iJYEExYKAD4WIQSyrQQPiOyB | |
L2q7g5LoVRLnEszQxgUCXMHV/AIbAwUJBaOagAULCQgHAwUVCgkICwUWAgMBAAIe |
This file contains 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
2016/08/26 10:45:51 [INFO] Terraform version: 0.7.1 | |
2016/08/26 10:45:51 [INFO] CLI args: []string{"/usr/local/Cellar/terraform/0.7.1/bin/terraform", "apply"} | |
2016/08/26 10:45:51 [DEBUG] Detected home directory from env var: /Users/isma | |
2016/08/26 10:45:51 [DEBUG] Detected home directory from env var: /Users/isma | |
2016/08/26 10:45:51 [DEBUG] Attempting to open CLI config file: /Users/isma/.terraformrc | |
2016/08/26 10:45:51 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2016/08/26 10:45:51 [DEBUG] Detected home directory from env var: /Users/isma | |
2016/08/26 10:45:51 [TRACE] Preserving existing state lineage "bab6288a-6b47-40b3-aa5e-1f3075585ee8" | |
2016/08/26 10:45:51 [TRACE] Preserving existing state lineage "bab6288a-6b47-40b3-aa5e-1f3075585ee8" | |
2016/08/26 10:45:51 [TRACE] Graph after step *terraform.ConfigTransformer: |
This file contains 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
vsphere_file.matt-centos6_upload: Creating... | |
datastore: "" => "slowHDD3TB" | |
destination_file: "" => "/vmfs/volumes/57bc3050-5394b941-b092-0cc47ac2a28c/iar-ngali6.vmdk" | |
source_file: "" => "~/templates/centos6/Matt-Cent6-disk1.vmdk" | |
vsphere_virtual_machine.ngali: Creating... | |
disk.#: "" => "1" | |
disk.223622219.bootable: "" => "" | |
disk.223622219.controller_type: "" => "scsi" | |
disk.223622219.datastore: "" => "slowHDD3TB" | |
disk.223622219.iops: "" => "" |
This file contains 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
This is my license. There are many like it, but this one is mine. | |
My license is my best friend. It is my life. I must master it as I must master my life. |
I hereby claim:
- I am arenzana on github.
- I am iarenzana (https://keybase.io/iarenzana) on keybase.
- I have a public key whose fingerprint is B2AD 040F 88EC 812F 6ABB 8392 E855 12E7 12CC D0C6
To claim this, I am signing this object:
This file contains 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
#!/bin/bash | |
. ${HOME}/.bashrc | |
if [ $# -ne 3 ] | |
then | |
echo | |
echo "Usage: $0 file host port" | |
echo | |
exit 2 |
This file contains 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
#!/bin/bash | |
#;============================================================================ | |
curl http://ipecho.net/plain; echo | |
#;============================================================================ | |
exit 0 |
This file contains 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
#!/usr/bin/perl | |
use FileHandle; | |
$mailfrom = "sender\@example.com"; | |
$mailto = "recipient\@example.com"; | |
@check=`df -k`; | |
@warn = grep { m/(\d+\%)/ and $1 >=90} @check; |