I hereby claim:
- I am joemiller on github.
- I am joemiller (https://keybase.io/joemiller) on keybase.
- I have a public key ASB2rUAf7TBITz--9TUrhgfkvA_rfCn7IalrXwMvs5KtSwo
To claim this, I am signing this object:
| Apr 22 15:38:33 endpointb914e408.chios.panth.io systemd[1]: Freezing execution. | |
| Apr 22 15:38:33 endpointb914e408.chios.panth.io systemd[1]: Caught <ABRT>, dumped core as pid 11909. | |
| Apr 22 15:38:33 endpointb914e408.chios.panth.io audispd[402]: node=endpointb914e408.chios.panth.io type=ANOM_ABEND msg=audit(1461339513.756:8018204): auid=4294967295 uid=0 gid=0 ses=4294967295 pid=11909 comm="systemd" exe="/usr/lib/system | |
| d/systemd" sig=6 | |
| Apr 22 15:38:33 endpointb914e408.chios.panth.io systemd[1]: Assertion 'hashmap_put(u->manager->cgroup_unit, s, u) == 1' failed at ../src/core/unit.c:2533, function unit_deserialize(). Aborting. | |
| Apr 22 15:38:33 endpointb914e408.chios.panth.io systemd[1]: Reloading. |
| sed --follow-symlinks -i -e '/Slice=/d' /etc/systemd/system/mysql*service /etc/systemd/system/replica*service /etc/systemd/system/pt*service |
| ## maybe just drop these altogether? | |
| if "audit" in [tags] and [LONG_TERM_STORAGE] != "1" { | |
| drop { } | |
| } | |
| ## drop solr logs (this doesn't catch all solr logs but should get most) | |
| if [unit] == "tomcat.service" { | |
| if [message] =~ /org.apache.solr.core.SolrCore/ { drop { } } | |
| if [message] =~ /webapp=[\/]+solr/ { drop { } } | |
| } |
| #!/usr/bin/env ruby | |
| # | |
| # helper for making kubernetes secrets yaml files. Supports key/val strings and file contents | |
| # | |
| # Example: | |
| # -------- | |
| # | |
| # $ echo 'top secret stuff right here' >secret.txt | |
| # $ ./k8s-secrets.rb secret-volume @secret.txt foo=bar biz=bop | |
| # |
| #!/bin/bash | |
| # | |
| # Script for updating DNS records on Hurricane Electirc's DNS system (https://dns.he.net). | |
| # | |
| # The record will be updated with the IP address that originates the request. | |
| # | |
| # Usage | |
| # ----- | |
| # | |
| # Create config file `/etc/he-dns-update.conf`: |
I hereby claim:
To claim this, I am signing this object:
| macbook-joe git/coreos/coreos-xhyve ‹master› » docker-machine create -d xhyve xhyve-test | |
| Running pre-create checks... | |
| Creating machine... | |
| (xhyve-test) Copying /Users/joe/.docker/machine/cache/boot2docker.iso to /Users/joe/.docker/machine/machines/xhyve-test/boot2docker.iso... | |
| (xhyve-test) Creating VM... | |
| (xhyve-test) Extracting vmlinuz64 and initrd.img from boot2docker.iso... | |
| (xhyve-test) /dev/disk3 /Users/joe/.docker/machine/machines/xhyve-test/b2d-image | |
| (xhyve-test) "disk3" unmounted. | |
| (xhyve-test) "disk3" ejected. | |
| (xhyve-test) Generating 20000MB disk image... |
| #!/bin/sh | |
| set -ex | |
| for i in $(find /etc/systemd/system/ -maxdepth 2 -mindepth 1 -type d); do | |
| if ! grep -qP '\.wants|\.requires' <<<"$i"; then | |
| continue | |
| fi | |
| for f in $(find $i -type f); do |
| #!/bin/sh | |
| set -ex | |
| mysql_cmd="btool mysql" | |
| tmpdir=$(mktemp -d /tmp/mysql-blob-test.XXXXXXXX) | |
| chmod 755 "$tmpdir" | |
| function cleanup { |
| #!/bin/sh | |
| # helper script for making a new CA and signing client (leaf) certs, including making java keystore (JKS) files. useful in creating test fixtures | |
| # | |
| # Example: | |
| # ./mk-test-certs.sh | |
| # ==> Creating new CA: certs/ca.key, certs/ca.crt | |
| # Generating a 2048 bit RSA private key | |
| # ....................................................+++ | |
| # ...............................+++ | |
| # writing new private key to 'certs/ca.key' |