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
2021-08-11T17:50:32.138-0500 [DEBUG] Adding temp file log sink: /tmp/terraform-log358732098 | |
2021-08-11T17:50:32.138-0500 [INFO] Terraform version: 1.0.4 | |
2021-08-11T17:50:32.139-0500 [INFO] Go runtime version: go1.16.4 | |
2021-08-11T17:50:32.139-0500 [INFO] CLI args: []string{"/usr/bin/terraform", "plan"} | |
2021-08-11T17:50:32.139-0500 [DEBUG] Attempting to open CLI config file: /home/aphistic/.terraformrc | |
2021-08-11T17:50:32.139-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2021-08-11T17:50:32.139-0500 [INFO] Loading CLI configuration from /home/aphistic/.terraform.d/credentials.tfrc.json | |
2021-08-11T17:50:32.139-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021-08-11T17:50:32.139-0500 [DEBUG] ignoring non-existing provider search directory /home/aphistic/.terraform.d/plugins | |
2021-08-11T17:50:32.139-0500 [DEBUG] ignoring non-existing provider search directory /home/aphistic/.local/share/terraform/plugins |
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
{ | |
"protocols": { | |
"bgp": { | |
"64500": { | |
"neighbor": { | |
"192.168.1.1": { | |
"remote-as": 64501 | |
}, | |
"192.168.1.2": { | |
"remote-as": 64501 |
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
### Keybase proof | |
I hereby claim: | |
* I am aphistic on github. | |
* I am aphistic (https://keybase.io/aphistic) on keybase. | |
* I have a public key ASCADTUhxuYX3qhsfy8OX9qd9s9L03-o0FlTBsSHUCCfxgo | |
To claim this, I am signing this object: |
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
[Unit] | |
Description=Docker Application Container Engine | |
Documentation=https://docs.docker.com | |
After=network.target docker.socket | |
Requires=docker.socket | |
[Service] | |
Type=notify | |
ExecStart=/usr/bin/docker daemon -H fd:// | |
MountFlags=slave |
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
#include "mruby.h" | |
#include "mruby/proc.h" | |
#include "mruby/data.h" | |
#include "mruby/compile.h" | |
mrb_value class_func(mrb_state *mrb, mrb_value self) | |
{ | |
// Ruby method params | |
char* strVal; |
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
#include "mruby.h" | |
#include "mruby/proc.h" | |
#include "mruby/data.h" | |
#include "mruby/compile.h" | |
int main(int argc, char** argv) | |
{ | |
mrb_state *state = mrb_open(); | |
mrbc_context *cxt = mrbc_context_new(state); |