Commit a22d72e9 authored by Rane Squires's avatar Rane Squires

Change 'minoconda' references to 'anaconda'

parent a7f083e1
Pipeline #116 canceled with stages
...@@ -17,10 +17,10 @@ class anaconda::environments { ...@@ -17,10 +17,10 @@ class anaconda::environments {
} }
exec { 'setupvanilla3': exec { 'setupvanilla3':
unless => "conda env list | grep -q '/opt/miniconda/envs/vanilla3'", unless => "conda env list | grep -q '/opt/anaconda/envs/vanilla3'",
command => 'conda env create -f /opt/envs/vanilla3.yml', command => 'conda env create -f /opt/envs/vanilla3.yml',
require => File['/opt/envs/vanilla3.yml'], require => File['/opt/envs/vanilla3.yml'],
path => ['/bin','/opt/miniconda/bin'] path => ['/bin','/opt/anaconda/bin']
} }
file { '/opt/envs/tensorflow.yml': file { '/opt/envs/tensorflow.yml':
...@@ -30,10 +30,10 @@ class anaconda::environments { ...@@ -30,10 +30,10 @@ class anaconda::environments {
} }
exec { 'setuptensorflow': exec { 'setuptensorflow':
unless => "conda env list | grep -q '/opt/miniconda/envs/tensorflow'", unless => "conda env list | grep -q '/opt/anaconda/envs/tensorflow'",
command => 'conda env create -f /opt/envs/tensorflow.yml', command => 'conda env create -f /opt/envs/tensorflow.yml',
require => File['/opt/envs/tensorflow.yml'], require => File['/opt/envs/tensorflow.yml'],
path => ['/bin','/opt/miniconda/bin'] path => ['/bin','/opt/anaconda/bin']
} }
file { '/opt/envs/tensorflow-gpu.yml': file { '/opt/envs/tensorflow-gpu.yml':
...@@ -43,10 +43,10 @@ class anaconda::environments { ...@@ -43,10 +43,10 @@ class anaconda::environments {
} }
exec { 'setuptensorflow-gpu': exec { 'setuptensorflow-gpu':
unless => "conda env list | grep -q '/opt/miniconda/envs/tensorflow-gpu'", unless => "conda env list | grep -q '/opt/anaconda/envs/tensorflow-gpu'",
command => 'conda env create -f /opt/envs/tensorflow-gpu.yml', command => 'conda env create -f /opt/envs/tensorflow-gpu.yml',
require => File['/opt/envs/tensorflow-gpu.yml'], require => File['/opt/envs/tensorflow-gpu.yml'],
path => ['/bin','/opt/miniconda/bin'] path => ['/bin','/opt/anaconda/bin']
} }
#file { '/opt/envs/bioinformatics.yml': #file { '/opt/envs/bioinformatics.yml':
...@@ -56,10 +56,10 @@ class anaconda::environments { ...@@ -56,10 +56,10 @@ class anaconda::environments {
#} #}
#exec { 'setupbioinformatics': #exec { 'setupbioinformatics':
# unless => "conda env list | grep -q '/opt/miniconda/envs/bioinformatics'", # unless => "conda env list | grep -q '/opt/anaconda/envs/bioinformatics'",
# command => 'conda env create -f /opt/envs/bioinformatics.yml', # command => 'conda env create -f /opt/envs/bioinformatics.yml',
# require => File['/opt/envs/bioinformatics.yml'], # require => File['/opt/envs/bioinformatics.yml'],
# path => ['/bin','/opt/miniconda/bin'] # path => ['/bin','/opt/anaconda/bin']
#} #}
} }
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