jake2184

Results 5 comments of jake2184

Ok, thansk for the answer. I am trying to use this as a cross-platform replacement for powershell my team to be able to deploy new VMs. Is there an expectation...

I dont think manual numbering of the partition is supported - this module simply wraps around the parted binary, and the `parted mkpart` command doesn't take a numeric identifier as...

Could you give a bit more detail about the disk setup (as in if you've just expand a virtual disk etc), and the OS + parted version? I'll try and...

I've poked around with the module and got it work as requested using `pretend-input-tty`, but as @rosowiecki states there are a number of drawbacks to this, the most prominent one...

I came to a rather hacky work around, involving unpacking the data: ```ruby event.set("from", event.get("from").unpack("C4").join(".")); event.set("to", event.get("to").unpack("C4").join(".")); event.set("messageId", event.get("messageId").unpack("H*").join("")); ``` And for the rData response, which may be IPv6 or...