Bar Hofesh
Bar Hofesh
@datanoise gave any thought to this proposal ?
+1 for PR to Crystal, I've been playing around with adding missing things to the OpenSSL lib also, you can see here: https://github.com/manastech/crystal/pull/669 If you want I can also help...
I'll join this request to support Rubinius.
I see this is also happening when sending remote jobs: ``` [145] pry(main)> job3 = print.print_file("/home/unshadow/Downloads/the-complete-works-of-h-p-lovecraft.pdf") RuntimeError: Success ```
I see, maybe then add a hash options when sending the print_file to specify what return value I expect ? that would also be cool and can be default for...
Sounds good, thanks for giving this a thought :)
@sdogruyol specs fails because of known bug ``` /opt/crystal/embedded/bin/crystal: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.17' not found (required by /opt/crystal/embedded/bin/crystal) /opt/crystal/embedded/bin/crystal: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /opt/crystal/embedded/bin/crystal) /opt/crystal/embedded/bin/crystal: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.18'...
@sdogruyol Added via: https://github.com/sdogruyol/cryload/pull/14
@straight-shoota & @sdogruyol any updates on this? I would love seeing this happening :)
Sure, To create I use this: ``` ruby def create_container container_name = SecureRandom.uuid c = LXC::Container.new(container_name) begin c.create('ubuntu') c.start SYSLOGGER.info("Pool: Starting container: #{c.name}") rescue => e SYSLOGGER.error("Pool: Error starting container...