Skip to content

Instantly share code, notes, and snippets.

View hkaju's full-sized avatar

Hendrik Kaju hkaju

  • Tallinn, Estonia
View GitHub Profile

Keybase proof

I hereby claim:

  • I am hkaju on github.
  • I am hkaju (https://keybase.io/hkaju) on keybase.
  • I have a public key whose fingerprint is 4F78 AA80 F36F 979F 4234 DBE7 282A 6A14 3BF8 58D6

To claim this, I am signing this object:

@hkaju
hkaju / gist:6333372
Created August 25, 2013 11:28
Script for initializing a new puppet module for boxen
#!/usr/bin/env ruby
module_name = ARGV[-1]
`mkdir puppet-#{module_name}`
Dir.chdir("puppet-#{module_name}")
`git init .`
`git remote add template https://github.com/boxen/puppet-template.git`
`git fetch template`
`git checkout -b master template/master`