Ryan Schlesinger
Ryan Schlesinger
I have a fork of this plugin where I've added the following features: - runs it's own specs as a non-root user - adds the ability to wrap a command...
An alternative would be to "fix" et...
@marcogracklauer What do the mongodb logs look like? Edit: How much memory do you have on your pi? Is this swap usage?
That would make sense. In the move to 64 bit stuff, we're going to use more memory and the 1GB model is pretty small.
That's a good catch. I'll have to improve the documentation! Host networking is a valid solution if you're running the controller on the same local network as your devices. The...
@mmaxbar I've updated the wiki. Can you let me know if it makes sense to you?
After digging in to this issue I decided to configure simple-vars to emit a warning _only_ if the node exists after all of the plugins run. ```javascript require('postcss-simple-vars')({ unknown(node, name,...
It looks like the issue is that `ProcessRunner` only tries to write to `stdin` once when the command is started: https://github.com/piotrmurach/tty-command/blob/da308658f0cb96db78d5b3b25985fae0434973a0/lib/tty/command/process_runner.rb#L46 I think to be able to wrap interactive commands,...
I was able to use https://github.com/stripe/subprocess to wrap an interactive command.
I just wrote https://github.com/outstand/dash/blob/cd7c740afd1dc7fa809afd630e8a50ee68e391ca/lib/state.rb#L65 to integrate `Subprocess` a bit more with this gem. At least this way I get similar logging output!