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 @@
# @example
# include anaconda::update
class anaconda::update {
exec { 'updateconda':
command => 'conda update conda -yq',
path => ['/opt/anaconda/bin',],
schedule => 'daily',
command => 'conda update conda -yq',
environment => ["SHELL=/bin/bash"],
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