Skip to content

Commit

Permalink
Installing local aeolus-image-rubygem no longer looks for a specific …
Browse files Browse the repository at this point in the history
…version

The puppet code was hardcoded to look for a locally built 0.6.0
version of the aeolus-image-rubygem which no longer gets built (the
current version is 0.7.0) in a typical invocation of bootstrap.sh.
However, in practice this was not breaking anything in conductor since
aeolus-image-rubygem was bundle-installed as typical rubygem.

What would break is if a user requested a specific version of
aeolus-image-rubygem by setting FACTER_AEOLUS_IMAGE_RUBYGEM_BRANCH,
for example.
  • Loading branch information
cwolferh committed Jan 24, 2013
1 parent 1bf9ea9 commit 597fab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conductor/manifests/setup/dev.pp
Expand Up @@ -3,7 +3,7 @@

exec { "patch Gemfile to point to local aeolus-image-rubygem":
cwd => "${aeolus_workdir}/conductor/src",
onlyif => "test -f ${aeolus_workdir}/aeolus-image-rubygem/aeolus-image-0.6.0.gem",
onlyif => "test -f ${aeolus_workdir}/aeolus-image-rubygem/aeolus-image-*.gem",
command => "sed -i \"s#:git.*\\\$#:path => '${aeolus_workdir}/aeolus-image-rubygem'#\" Gemfile"
}

Expand Down

0 comments on commit 597fab8

Please sign in to comment.