Created
March 28, 2016 19:25
-
-
Save rockpapergoat/5ffcd11833fe8812c150 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
file { '/scratch/cuda-7.5': | |
ensure => directory, | |
} | |
package { 'cuda-7-5': | |
ensure => installed, | |
provider => 'yum', | |
install_options => [{'--installroot' => '/scratch/cuda-7.5'}], | |
require => File['/scratch/cuda-7.5'], | |
} | |
file { '/usr/local/cuda-7.5': | |
ensure => link, | |
target => '/scratch/cuda-7.5', | |
require => [Package['cuda-7-5'],File['/scratch/cuda-7.5']], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment