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.
| #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 |
| map $ssl_client_s_dn $ssl_client_s_dn_cn { | |
| default ""; | |
| ~/CN=(?<CN>[^/]+) $CN; | |
| } | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| listen 443 ssl; |
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.
| #!/bin/bash | |
| ###filename: chknfs.sh | |
| ###usage: crontab */1 * * * * root /root/chknfs.sh > /dev/null 2>&1 | |
| keep="/data/.keep" | |
| if [ ! -f $keep ]; then | |
| umount -f /data && mount /data | |
| fi |
| 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(); | |
| } |