Created
September 23, 2015 21:09
-
-
Save ferventcoder/730e00d16f8d2b532385 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
case $operatingsystem { | |
'windows': { | |
Package { | |
provider => chocolatey, | |
} | |
} | |
} | |
include chocolatey | |
include chocolatey_server | |
chocolatey::source {'local': | |
ensure => 'present', | |
location => 'http://localhost/chocolatey' | |
} | |
package {'roundhouse': | |
ensure => '0.8.5.0', | |
} -> | |
package {'putty': | |
ensure => installed, | |
} -> | |
package {'launchy': | |
ensure => latest, | |
} | |
-> | |
chocolatey::source {'chocolatey': | |
enable => false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment