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
| ==> default: ================================================================================ | |
| ==> default: Error executing action `create` on resource 'template[managed_hosts_file]' | |
| ==> default: ================================================================================ | |
| ==> default: | |
| ==> default: | |
| ==> default: RuntimeError | |
| ==> default: ------------ | |
| ==> default: File templates/default/hosts.erb does not exist for cookbook hosts_file | |
| ==> default: | |
| ==> default: Resource Declaration: |
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
| Error: | |
| Checking presence of file (checksum: <<"62420201a93adbd0f124bcdc77213941">>) for org <<"4cdd131099cc3ecdad7ed6a1c6509c95">> from bucket "bucket-name-cookbooks" (key: "organization-4cdd131099cc3ecdad7ed6a1c6509c95/checksum-62420201a93adbd0f124bcdc77213941") raised exception error:{aws_error,{http_error,301,{[{"x-amz-request-id","AD07CF7712CEC563"},{"x-amz-id-2","MHXAjJx+aJ8WlGBOp1ivpQPbPSG6hxv3c+Ls8IcqwozDWg8A3SPMd5kSVCHOqtx7"},{"content-type","application/xml"},{"date","Wed, 28 Oct 2015 09:33:02 GMT"},{"server","AmazonS3"},{"connection","close"}],[]}}} | |
| Config: | |
| S3_URL = "s3.amazonaws.com" | |
| #S3 Settings | |
| bookshelf['enable'] = false | |
| bookshelf['external_url'] = "https://#{S3_URL}" |
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
| class HealthCron < BaseCron | |
| def _run | |
| @backend.publisher.hgetall @backend.class::GilmourHealthKey do |r| | |
| known_hosts = Hash.new(0) | |
| r.each_slice(2) do pslice| | |
| host = slice[0] | |
| known_hosts[host] = "gilmour.health.#{host}" | |
| end |
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
| func TestComposeNested(t *testing.T) { | |
| c1 := NewPipe() | |
| c11 := NewComposition(composeOne) | |
| c11.SetMessage(StrMap{"merge-one": 1}) | |
| c1.Add(c11) | |
| c2 := NewPipe() | |
| c2.Add(NewFuncComposition(StrMap{"fake-two": 1})) |
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
| package main | |
| import "fmt" | |
| func helloWorld() { | |
| fmt.Println("Ok") | |
| } | |
| func main() { | |
| helloWorld() |
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
| batch := engine.NewPipe( | |
| engine.NewRequest("weather.fetch"), | |
| engine.NewRequest("weather.group"), | |
| engine.NewParallel( | |
| engine.NewPipe( | |
| engine.NewLambda(monthLambda("jan")), | |
| engine.NewParallel( | |
| engine.NewRequest("weather.min"), | |
| engine.NewRequest("weather.max"), | |
| ), |
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
| dc_pipeline = responder.compose([ | |
| { topic: 'private.customer.datacenter.create', message: data }, | |
| { topic: 'private.validate' } | |
| ]) | |
| nodes_pipeline = responder.compose([ | |
| responder.parallel([ | |
| { topic: 'private.customer.logger.create', message: data, | |
| opts: { timeout: 900} }, | |
| ]), |
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
| Port 22 | |
| Protocol 2 | |
| HostKey /etc/ssh/ssh_host_rsa_key | |
| HostKey /etc/ssh/ssh_host_dsa_key | |
| HostKey /etc/ssh/ssh_host_ecdsa_key | |
| HostKey /etc/ssh/ssh_host_ed25519_key | |
| UsePrivilegeSeparation no | |
| KeyRegenerationInterval 3600 | |
| ServerKeyBits 1024 | |
| SyslogFacility AUTH |
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
| package main | |
| import ( | |
| "log" | |
| "math" | |
| "testing" | |
| "testing/quick" | |
| ) | |
| func myMin(a, b float64) float64 { |