When I talk about Red Hat's involvement in RDO (http://openstack.redhat.com/) the question I often get is, "doesn't that undermine sales of RHEL OSP (Red Hat's paid OpenStack offering)?"
Well, it's complicated.
When I talk about Red Hat's involvement in RDO (http://openstack.redhat.com/) the question I often get is, "doesn't that undermine sales of RHEL OSP (Red Hat's paid OpenStack offering)?"
Well, it's complicated.
| --- | |
| # container networks, safe to leave these as defaults | |
| cidr_networks: | |
| container: 172.29.236.0/22 | |
| tunnel: 172.29.240.0/22 | |
| storage: 172.29.244.0/22 | |
| # IPs from your tunnel and container networks that you want to reserve for the hosts | |
| used_ips: | |
| - 172.29.236.1 |
| #Download and extract logstalgia | |
| brew install wget | |
| wget https://github.com/acaudwell/Logstalgia/releases/download/logstalgia-1.0.7/logstalgia-1.0.7.tar.gz | |
| tar -zxvf logstalgia*.gz | |
| cd logstalgia* | |
| # Install logstlagia dependencies | |
| #brew install ttfautohint --with-qt | |
| brew install pkg-config glew sdl2 SDL2_image sdl SDL_image boost GLM freetype pcre |
| var net = require("net"); | |
| process.on("uncaughtException", function(error) { | |
| console.error(error); | |
| }); | |
| if (process.argv.length != 5) { | |
| console.log("usage: %s <localport> <remotehost> <remoteport>", process.argv[1]); | |
| process.exit(); | |
| } |
| map $ssl_client_s_dn $ssl_client_s_dn_cn { | |
| default ""; | |
| ~/CN=(?<CN>[^/]+) $CN; | |
| } | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| listen 443 ssl; |
| package cz.monetplus.mnsp.tools.misc; | |
| import org.apache.commons.codec.DecoderException; | |
| import org.apache.commons.codec.binary.Hex; | |
| import org.apache.commons.lang.StringUtils; | |
| /** | |
| * Tools for encoding a decoding pinblock | |
| * | |
| * @author Tomas Jacko <tomas.jacko [at] monetplus.cz> |