This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import the self-signed certificate from chef-server for rundeck's store | |
cert_alias = "#{node['fqdn']}-selfsigned-crt" | |
execute "import-rundeck-self-signed-cert" do | |
not_if "keytool -list -keystore /etc/rundeck/ssl/truststore -storepass adminadmin | grep #{cert_alias}" | |
command "keytool -import -alias #{cert_alias} -file /var/opt/chef-server/nginx/ca/*.crt -keystore /etc/rundeck/ssl/truststore -storepass adminadmin -noprompt" | |
action :run | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@dumptruck ~]# docker info | |
Containers: 0 | |
Images: 0 | |
Storage Driver: overlay | |
Backing Filesystem: extfs | |
Execution Driver: native-0.2 | |
Kernel Version: 3.19.3-3-ARCH | |
Operating System: Arch Linux | |
CPUs: 2 | |
Total Memory: 15.51 GiB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==> Edit PKGBUILD ? [Y/n] ("A" to abort) | |
==> ------------------------------------ | |
==> n | |
==> plex-media-server-plexpass dependencies: | |
- systemd (already installed) | |
==> Edit plex-media-server.install ? [Y/n] ("A" to abort) | |
==> ----------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/network add -nick solarce hangops | |
/server add -auto -ssl -network hangops hangops.irc.slack.com 6667 hangops.MyC00LP4SSWo|>D | |
/save | |
/connect hangops |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[(ruby-2.1.5)] ~/code/knife-block/knife-block-org <master> gem push knife-block-0.2.0.gem | |
Pushing gem to https://rubygems.org... | |
Repushing of gem versions is not allowed. | |
Please use `gem yank` to remove bad gem releases. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
thq-d-bburt01 福 ~/code/lookout/terraform/tf_zookeeper_github ➤ 9aeb663|master✓ | |
4331 ± : cp terraform.tfvars.example terraform.tfvars ⏎ [0m] | |
thq-d-bburt01 福 ~/code/lookout/terraform/tf_zookeeper_github ➤ 9aeb663|master✓ | |
4332 ± : terraform get -update [0m] | |
Get: git::https://github.com/terraform-community-modules/tf_aws_sg.git?ref=stable (update) | |
Get: git::https://github.com/terraform-community-modules/tf_aws_asg.git?ref=stable (update) | |
4334 ± : touch /tmp/bootstrap_stage0_zk_default.sh ⏎ [0m] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A = [1, 3, 5, 7, 9] | |
B = [2, 4, 6, 8] | |
add each element of A to each element of B | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
thq-d-bburt01 福 ~/code/lookout/terraform/tf_example ➤ 608cc3b|master✓ | |
4299 ± : terraform plan -var-file terraform_main.tfvars | |
Refreshing Terraform state prior to plan... | |
Error refreshing state: 1:3: unknown variable accessed: var.aws_access_key in: | |
${var.aws_access_key} | |
thq-d-bburt01 福 ~/code/lookout/terraform/tf_example ➤ 608cc3b|master✓ | |
4300 ± : terraform plan -var-file terraform_main.tfvars -var-file terraform_aws.tfvars |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ubuntu Precise full with pkgsrc bootstrapped into /home/ubuntu | |
FROM solarce/dockerfile-ubuntu-precise-full:latest | |
MAINTAINER Brandon Burton <[email protected]> | |
ENV DEBIAN_FRONTEND noninteractive | |
# Setup pkgsrc | |
# Steps modified from http://www.codeghar.com/blog/pkgsrc-on-linux-quickstart-guide.html | |
RUN adduser --shell /bin/bash --gecos "User for builds" --disabled-password --home /home/ubuntu ubuntu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# need to pip install pyhcl pyyaml | |
import sys, yaml, hcl | |
filename = sys.argv[1] | |
print("Reading", filename) | |
with open(filename, 'r') as fp: | |
obj = hcl.load(fp) |