For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
## | |
# WHOIS servers for new TLDs (http://www.iana.org/domains/root/db) | |
# Current as of 2017-12-10 UTC | |
## | |
\.aarp$ whois.nic.aarp | |
\.abarth$ whois.afilias-srs.net | |
\.abbott$ whois.afilias-srs.net | |
\.abbvie$ whois.afilias-srs.net | |
\.abc$ whois.nic.abc |
--- | |
c1_packages: | |
- c1-templates-bundle | |
- c1-cre-api |
#!/bin/bash | |
# Setup | |
# | |
# - Create a new Jenkins Job | |
# - Mark "None" for Source Control Management | |
# - Select the "Build Periodically" build trigger | |
# - configure to run as frequently as you like | |
# - Add a new "Execute Shell" build step | |
# - Paste the contents of this file as the command |
--- | |
# https://discourse.chef.io/t/how-to-run-test-kitchen-on-an-existing-windows-server/11871/1 | |
driver: | |
name: proxy | |
host: <fqdn> | |
reset_command: "exit 0" | |
port: 5985 | |
username: <user> | |
password: <password> | |
%APPDATA%\Mozilla\Firefox\Profiles\*.default
on Windows machine to any ubuntu$ scp -P 2223 -r *.default [email protected]:/tmp/
$ cd /tmp/*.default
$ sudo apt-get -y install sqlite nss-passwords
/**= | |
* User: zircote | |
* Date: 16/10/2013 | |
* Time: 08:59 | |
*/ | |
var SERVICE_HOST = 'http://aws.amazon.com' | |
var data_sources = { | |
"linux-od": { |
#!/bin/bash | |
# ANSIBLE_VERSION if not provided, script will install default ansible version which is 2.3.1 | |
ANSIBLE_VERSION=$1 | |
_pip_deps(){ | |
pip --quiet install -U setuptools > /dev/null 2>&1 | |
pip --quiet install -U pip > /dev/null 2>&1 | |
} | |
# just to sleep | |
sleep 20 ; |
#!/bin/bash | |
# | |
# Use the following script using sudo to install multiple golang installations on your debian | |
# update-alternatives creates, removes, maintains and displays information about the symbolic links comprising the alternatives system | |
# Usage : sudo ./full_golang_install.sh | |
# | |
if [[ $(id -u) -ne 0 ]] ; then echo "This script should be run using sudo or as the root user" ; exit 1 ; fi | |
## Configuration and init |