Skip to content

Instantly share code, notes, and snippets.

@roman
Created September 23, 2011 21:13
Show Gist options
  • Save roman/1238454 to your computer and use it in GitHub Desktop.
Save roman/1238454 to your computer and use it in GitHub Desktop.
Code for a puppet post on romanandreg.com
class git {
include git::install
...
}
class git($user="vagrant", $username, $email) {
include git::install
...
}
node /^vagrantup.*$/ {
include pacman, bash, tmux, ghc, java, leiningen, redis
class { "git":
user => 'vagrant',
username => "Roman\ Gonzalez",
email => "[email protected]",
}
}
node /^vagrantup.*$/ {
class { "git":
user => 'vagrant',
username => "Roman\ Gonzalez",
email => "[email protected]"
}
include pacman, bash, tmux, ghc, java, leiningen, redis
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment