Skip to content

Instantly share code, notes, and snippets.

View ScottSturdivant's full-sized avatar

Scott Sturdivant ScottSturdivant

View GitHub Profile
@ScottSturdivant
ScottSturdivant / Makefile
Last active January 16, 2020 20:32 — forked from xenogenesi/Makefile
create self signed certificates
DOMAIN ?= mydomain.com
COUNTRY := IT
STATE := IT
COMPANY := Evil Corp.
# credits to: https://gist.github.com/fntlnz/cf14feb5a46b2eda428e000157447309
# usage:
@ScottSturdivant
ScottSturdivant / Vagrantfile
Last active December 18, 2015 01:59 — forked from wutali/fabric.rb
Fabric provisioner for Vagrant 1.2
require_relative "plugins/provisioners/fabric/plugin.rb"
Vagrant.configure("2") do |config|
*snip*
config.vm.provision :fabric do |fab|
fab.tasks = ["setup_salt:kwarg=value"]
end
end