Kimmo Lehto
Kimmo Lehto
Something like `require 'deep_merge/core_ext'` and without it you could use `DeepMerge.merge(hash1, hash2)` or `hash1.extend(DeepMerge::Hash).merge(hash2)`
Tried to search for an existing request, didn't find one. I'd really like a feature where you could set some kind of time after which tabs that are suspended would...
For example `ReadFile`, `FileExist`, `DeleteFile` and so on. None of the functions in `linux.go` should use `exec.Sudo` internally.
Maybe setup good old footloose or use something like https://github.com/gliderlabs/ssh
I'd like to see something like : ``` response = Stalker.enqueue_with_response("sum", :a => 1, :b => 2) or Stalker.enqueue_with_response("sum", :a => 1, :b => 2) do |response| puts "1 +2...
I don't think ignored_folders is working. I have: ``` ignore_folders 'vendor/**' # (also tried vendor/**/*, vendor*) ``` But still it seems to scan under vendor. And it only takes one...
Fixes #280
Machine IDs on debian10 images aren't regenerated so they're identical. ```yaml cluster: privateKey: ~/.ssh/id_rsa machines: - count: 2 backend: docker spec: image: quay.io/footloose/debian10 name: host%d portMappings: - containerPort: 22 hostPort:...
It seems every value needs to be queried separately. It would be great to have something like: ```go host, _ := ssh_config.GetHost("foo") fmt.Println(host.IdentityFile) fmt.Println(host.StrictHostKeyChecking) host.Port = 45 fmt.Println(host.SSHConfig()) ```