Skip to content

Commit

Permalink
Add 3.2.0 pptp to the set of supported puppet target platforms.
Browse files Browse the repository at this point in the history
This adds a generator of the 3.2.0 pptp file.
The generated file is added to the set of targets.
Utils and handlers updated to map the 3.2 preference to 3.2.0 pptp.

The generated pptp is cut from the puppet master branch while the
external plugins are cut from the 3.0.0 distribution.

The 3.2.0 pptp should be updated once the 3.2.0-rc is out and available
in packaged form (this to ensure that the correct packaged externals are
included).
  • Loading branch information
hlindberg committed Apr 15, 2013
1 parent 7c28081 commit 37d83ea
Show file tree
Hide file tree
Showing 4 changed files with 1,047 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,12 @@ public void ensureTargetProjectConfiguration(IProgressMonitor monitor) {
uri = PptpResourceUtil.getPuppet_2_6_9();
else if("2.7".equals(pptpVersion))
uri = PptpResourceUtil.getPuppet_2_7_19();
else
else if("3.0".equals(pptpVersion))
uri = PptpResourceUtil.getPuppet_3_0_0();
else if("3.2".equals(pptpVersion) || "future".equals(pptpVersion))
uri = PptpResourceUtil.getPuppet_3_2_0();
else
uri = PptpResourceUtil.getPuppet_3_0_0(); // bad, but pick something

sync(targetProject, uri, "puppet-", monitor);
sync(targetProject, PptpResourceUtil.getFacter_1_6(), "facter-", monitor);
Expand Down
Loading

0 comments on commit 37d83ea

Please sign in to comment.