Yury Bushmelev

Results 104 comments of Yury Bushmelev

Also `sudo::defaults()` function behaves differently when called from ERB vs EPP. When called from EPP it receives the Hash as it is instead of Array of Tuples. So, I guess,...

I saw this issue also. ~~From my experience the `error` key presence in the `details` hash is caused that, not a variable.~~ Though, I don't remember exactly.

well, I tried with the simple plan and it's fine with the `error` key, but fails on any `Error()` object value. The minimal reproducer is below: ```puppet plan bolt_3373 {...

> > because there is no way to evaluate a String as a Puppet DSL expression (or I'm not aware of it). > > Actually, there is an `eval` function...

There was https://github.com/lima-vm/lima/pull/1305 and https://github.com/lima-vm/lima/discussions/1309 few years ago FYI :)

Somehow related: https://github.com/lima-vm/lima/issues/1354 I did a quick look to the sources, but my Go foo is not good enough :(

IIRC the behavior above (attempting to download the snapshot) happens because another process have the release file already created, but checksum is wrong (because it's still downloading). That's why 2nd...

FYI, I'm unable to test it, because I have no machine under my hands to install VirtualBox on.

Wrt downloading multiple files from a host in one ssh session. I've just managed to use `sftp -b-` with a generated batchfile to achieve that. Roughly like this: ```puppet run_command("echo...

Hit this today again.. so far I can say that the only good use-case is when you want to download one file/one directory from bunch of hosts once. For anything...