I hereby claim:
- I am gamefiend on github.
- I am quinnmurphy (https://keybase.io/quinnmurphy) on keybase.
- I have a public key whose fingerprint is 27BF B1D8 E2AA 8D26 7971 D7CE 9790 DEE2 1971 D721
To claim this, I am signing this object:
{"log":"2017/06/01 21:34:31 token request from 10.125.72.65:49962\n","stream":"stderr","time":"2017-06-01T21:34:31.505194327Z"} | |
{"log":"2017/06/01 21:34:34 error creating wrapped token for pod (vault-example-2275320261-p2kw3)\n","stream":"stderr","time":"2017-06-01T21:34:34.05660751Z"} | |
{"log":"2017/06/01 21:34:39 token request from 10.125.72.65:49962\n","stream":"stderr","time":"2017-06-01T21:34:39.057661102Z"} | |
{"log":"2017/06/01 21:34:41 error creating wrapped token for pod (vault-example-2275320261-p2kw3)\n","stream":"stderr","time":"2017-06-01T21:34:41.746754557Z"} | |
{"log":"2017/06/01 21:34:46 token request from 10.125.72.65:49962\n","stream":"stderr","time":"2017-06-01T21:34:46.747635166Z"} | |
{"log":"2017/06/01 21:34:49 error creating wrapped token for pod (vault-example-2275320261-p2kw3)\n","stream":"stderr","time":"2017-06-01T21:34:49.008887561Z"} | |
{"log":"2017/06/01 21:34:54 token request from 10.125.72.65:49962\n","stream":"stderr","time":"2017-06-01T21:34:54.009917726Z"} | |
{"log":"2017/06/01 21:34:57 error |
txtblk='\e[0;30m' # Black - Regular | |
txtred='\e[0;31m' # Red | |
txtgrn='\e[0;32m' # Green | |
txtylw='\e[0;33m' # Yellow | |
txtblu='\e[0;34m' # Blue | |
txtpur='\e[0;35m' # Purple | |
txtcyn='\e[0;36m' # Cyan | |
txtwht='\e[0;37m' # White | |
bldblk='\e[1;30m' # Black - Bold |
#include this function in the bashrc | |
function parse_git_branch { | |
ref=$(/usr/bin/git symbolic-ref HEAD 2> /dev/null) | |
if [ -z $ref ]; then | |
echo "| - |" | |
else | |
echo "|"${ref#refs/heads/}"|" | |
fi | |
} |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# assumes that you have the program howdoi -- if you don't, grab it from | |
# makes a mini-looping "shell" for using 'howdoi' in another pane, tab, or window | |
LANGUAGE='python' | |
clear | |
echo "Python HOWDOI" | |
echo "[ Ctl+C ] to exit" | |
while : | |
do | |
read -p $'\e[1;31mHOWDOI...\e[0m ' input |
tmux ls | awk {print $1} | cut -d: -f1 | xargs -I{} tmux kill-session -t {} |
# Grab the latest packages for puppet on a new system. | |
# curl https://gist.github.com/gamefiend/8422716/raw/ca235abc5812bf0fec3091f8464a2d62b84e37ec/puppet-ubuntu | /bin/bash | |
wget https://apt.puppetlabs.com/puppetlabs-release-precise.deb | |
dpkg -i puppetlabs-release-precise.deb | |
apt-get update -y | |
apt-get install puppet -y |
#!/bin/bash | |
OVPN_HOME="/etc/openvpn/easy-rsa" | |
BUNDLE="/tmp/$1" | |
DEFAULT_EMAIL="[email protected]" | |
echo "Creating a bundle" | |
mkdir $BUNDLE | |
cp -f $OVPN_HOME/client.ovpn $BUNDLE/$1.ovpn |
!/bin/sh | |
######################################################################## | |
# Ventrilo start script | |
# LSB style init script -- assumes you have LSB package installed | |
# running on CentOS/RHEL 6 | |
# Description : This is an LSB-style startup script for Ventrilo | |
# | |
# Authors : Quinn Murphy | |
# | |
# Version : 1.0 |
# Dancer aliases to make life easier | |