Skip to content

Instantly share code, notes, and snippets.

View pporada-gl's full-sized avatar

Phil Porada pporada-gl

View GitHub Profile
mkdir ~/gocode
cat << "EOL" >> ~/.bashrc
export GOPATH="$HOME/gocode"
export PATH=$GOPATH/bin:"${PATH}"
EOL
source ~/.bashrc
go get github.com/tools/godep
#!/usr/bin/env bats
@test "Ensure uchiwa is running" {
run systemctl is-active uchiwa
[ "$status" -eq 0 ]
}
@test "Ensure uchiwa is enabled" {
run systemctl is-enabled uchiwa
[ "$status" -eq 0 ]
{
"builders": [
{
"access_key": "{{user `var_aws_access_key`}}",
"ami_description": "Built from the GL cut CentOS7. This is a fairly standard CentOS7 image.",
"ami_name": "CentOS 7 x86_64 Base {{timestamp}}",
"associate_public_ip_address": true,
"enhanced_networking": true,
"instance_type": "{{user `var_aws_instance_type`}}",
"region": "{{user `var_aws_region`}}",