Commit 3cff0582 authored by Rane Squires's avatar Rane Squires

Merge branch 'development' into 'master'

Added environment resource to fix conda update exception ($SHELL = /bin/bash)

See merge request !8
parents 5af78ca8 8856df79
Pipeline #134 failed with stages
...@@ -5,9 +5,12 @@ ...@@ -5,9 +5,12 @@
# @example # @example
# include anaconda::update # include anaconda::update
class anaconda::update { class anaconda::update {
exec { 'updateconda': exec { 'updateconda':
command => 'conda update conda -yq', command => 'conda update conda -yq',
path => ['/opt/anaconda/bin',], environment => ["SHELL=/bin/bash"],
schedule => 'daily', path => ['/opt/anaconda/bin',],
schedule => 'daily',
} }
} }
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