Created
April 30, 2013 21:04
-
-
Save supercow/5491944 to your computer and use it in GitHub Desktop.
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
$base_packages = [ | |
'git', | |
'tmux', | |
'weechat', | |
'nginx', | |
'monit', | |
'sshd', | |
] | |
package { $base_packages: | |
ensure => latest, | |
} | |
# even better if you use the vcs_repo type and put your scripts on github | |
file { 'micro_automations': | |
ensure => directory, | |
path => '/root/bin', | |
recurse => true, | |
source => 'puppet:///files/micro_automations', | |
} | |
include zsh | |
include a_few_other_things |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment