Commit 4b699b9d authored by Rane Squires's avatar Rane Squires

Update to add test environment vanilla3

parent 0ae0de74
Pipeline #16 canceled with stages
...@@ -6,15 +6,15 @@ ...@@ -6,15 +6,15 @@
# include anaconda::environments # include anaconda::environments
class anaconda::environments { class anaconda::environments {
file { 'environment1.yml': #temporary name file { '/vanilla3.yml':
ensure => present, ensure => present,
content => '', #content required to generate desire environment source => 'puppet:///modules/anaconda/data'
} }
exec { 'setupenvironment1': exec { 'setupvanilla3':
unless => "conda env list | grep -q 'environment1'" unless => "conda env list | grep -q 'vanilla3'"
command => 'conda env create -f environment1.yml' command => 'conda env create -f vanilla3.yml'
require => File[environment1.yml], require => File[vanilla3.yml],
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment