Last active
September 16, 2016 16:54
-
-
Save rockpapergoat/c1d96dfc48b7848b4a31ec8a2ea5d0cf to your computer and use it in GitHub Desktop.
This file contains 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
--- | |
cuda::install::cuda_pkgs: | |
'cuda-6.0': | |
ensure: 'absent' | |
'cuda-7.5': | |
ensure: 'present' |
This file contains 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 cuda::install ( | |
$cuda_pkgs, | |
){ | |
if empty($cuda_pkgs) { | |
fail('please define list of cuda pkgs') | |
} | |
include cuda::repo | |
ensure_packages($cuda_pkgs) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment