Created
September 23, 2011 21:13
-
-
Save roman/1238454 to your computer and use it in GitHub Desktop.
Code for a puppet post on romanandreg.com
This file contains hidden or 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
class git { | |
include git::install | |
... | |
} |
This file contains hidden or 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
class git($user="vagrant", $username, $email) { | |
include git::install | |
... | |
} |
This file contains hidden or 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
node /^vagrantup.*$/ { | |
include pacman, bash, tmux, ghc, java, leiningen, redis | |
class { "git": | |
user => 'vagrant', | |
username => "Roman\ Gonzalez", | |
email => "[email protected]", | |
} | |
} |
This file contains hidden or 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
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