freighthop 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (322) hide show
  1. data/Puppetfile +4 -3
  2. data/Puppetfile.lock +14 -2
  3. data/Vagrantfile +5 -1
  4. data/data/common.json +4 -3
  5. data/freighthop.gemspec +1 -1
  6. data/lib/freighthop/cli/checks.rb +12 -0
  7. data/lib/freighthop/cli/help.rb +7 -0
  8. data/lib/freighthop/cli/init.rb +35 -0
  9. data/lib/freighthop/cli/ssh.rb +1 -0
  10. data/lib/freighthop/cli/vagrant.rb +1 -0
  11. data/lib/freighthop/cli.rb +5 -17
  12. data/lib/freighthop/config.rb +5 -1
  13. data/lib/freighthop/version.rb +1 -1
  14. data/lib/freighthop.rb +6 -1
  15. data/local_modules/freighthop/manifests/database/mysql/grant.pp +11 -0
  16. data/local_modules/freighthop/manifests/database/mysql.pp +5 -15
  17. data/local_modules/freighthop/manifests/database/postgres.pp +2 -2
  18. data/local_modules/freighthop/manifests/database.pp +3 -3
  19. data/local_modules/freighthop/manifests/init.pp +6 -23
  20. data/local_modules/freighthop/manifests/language/ruby.pp +5 -25
  21. data/local_modules/freighthop/manifests/language.pp +1 -4
  22. data/local_modules/freighthop/manifests/packages.pp +2 -12
  23. data/local_modules/freighthop/manifests/params.pp +19 -11
  24. data/local_modules/freighthop/manifests/web/apache.pp +60 -0
  25. data/local_modules/freighthop/manifests/web/nginx.pp +22 -0
  26. data/local_modules/freighthop/manifests/web/ssl.pp +13 -0
  27. data/local_modules/freighthop/manifests/web.pp +25 -21
  28. data/local_modules/freighthop/templates/apache/passenger.conf.erb +18 -0
  29. data/local_modules/freighthop/templates/nginx/vagrant-rails.conf.erb +5 -3
  30. data/modules/apache/CHANGELOG.md +172 -0
  31. data/modules/apache/CONTRIBUTING.md +234 -0
  32. data/modules/apache/Gemfile +25 -0
  33. data/modules/apache/LICENSE +15 -0
  34. data/modules/apache/Modulefile +12 -0
  35. data/modules/apache/README.md +1515 -0
  36. data/modules/apache/README.passenger.md +93 -0
  37. data/modules/apache/Rakefile +1 -0
  38. data/modules/apache/files/httpd +24 -0
  39. data/modules/apache/lib/puppet/provider/a2mod/a2mod.rb +35 -0
  40. data/modules/apache/lib/puppet/provider/a2mod/gentoo.rb +116 -0
  41. data/modules/apache/lib/puppet/provider/a2mod/modfix.rb +12 -0
  42. data/modules/apache/lib/puppet/provider/a2mod/redhat.rb +60 -0
  43. data/modules/apache/lib/puppet/provider/a2mod.rb +34 -0
  44. data/modules/apache/lib/puppet/type/a2mod.rb +30 -0
  45. data/modules/apache/manifests/balancer.pp +80 -0
  46. data/modules/apache/manifests/balancermember.pp +52 -0
  47. data/modules/apache/manifests/confd/no_accf.pp +10 -0
  48. data/modules/apache/manifests/default_confd_files.pp +12 -0
  49. data/modules/apache/manifests/default_mods/load.pp +8 -0
  50. data/modules/apache/manifests/default_mods.pp +108 -0
  51. data/modules/apache/manifests/dev.pp +11 -0
  52. data/modules/apache/manifests/init.pp +329 -0
  53. data/modules/apache/manifests/listen.pp +9 -0
  54. data/modules/apache/manifests/mod/alias.pp +17 -0
  55. data/modules/apache/manifests/mod/auth_basic.pp +3 -0
  56. data/modules/apache/manifests/mod/auth_kerb.pp +5 -0
  57. data/modules/apache/manifests/mod/authnz_ldap.pp +19 -0
  58. data/modules/apache/manifests/mod/autoindex.pp +12 -0
  59. data/modules/apache/manifests/mod/cache.pp +3 -0
  60. data/modules/apache/manifests/mod/cgi.pp +4 -0
  61. data/modules/apache/manifests/mod/cgid.pp +23 -0
  62. data/modules/apache/manifests/mod/dav.pp +3 -0
  63. data/modules/apache/manifests/mod/dav_fs.pp +20 -0
  64. data/modules/apache/manifests/mod/dav_svn.pp +5 -0
  65. data/modules/apache/manifests/mod/deflate.pp +12 -0
  66. data/modules/apache/manifests/mod/dev.pp +5 -0
  67. data/modules/apache/manifests/mod/dir.pp +21 -0
  68. data/modules/apache/manifests/mod/disk_cache.pp +24 -0
  69. data/modules/apache/manifests/mod/event.pp +54 -0
  70. data/modules/apache/manifests/mod/expires.pp +3 -0
  71. data/modules/apache/manifests/mod/fastcgi.pp +24 -0
  72. data/modules/apache/manifests/mod/fcgid.pp +3 -0
  73. data/modules/apache/manifests/mod/headers.pp +3 -0
  74. data/modules/apache/manifests/mod/include.pp +3 -0
  75. data/modules/apache/manifests/mod/info.pp +14 -0
  76. data/modules/apache/manifests/mod/itk.pp +64 -0
  77. data/modules/apache/manifests/mod/ldap.pp +12 -0
  78. data/modules/apache/manifests/mod/mime.pp +21 -0
  79. data/modules/apache/manifests/mod/mime_magic.pp +14 -0
  80. data/modules/apache/manifests/mod/negotiation.pp +12 -0
  81. data/modules/apache/manifests/mod/nss.pp +25 -0
  82. data/modules/apache/manifests/mod/passenger.pp +38 -0
  83. data/modules/apache/manifests/mod/perl.pp +3 -0
  84. data/modules/apache/manifests/mod/peruser.pp +73 -0
  85. data/modules/apache/manifests/mod/php.pp +26 -0
  86. data/modules/apache/manifests/mod/prefork.pp +74 -0
  87. data/modules/apache/manifests/mod/proxy.pp +15 -0
  88. data/modules/apache/manifests/mod/proxy_ajp.pp +4 -0
  89. data/modules/apache/manifests/mod/proxy_balancer.pp +10 -0
  90. data/modules/apache/manifests/mod/proxy_html.pp +28 -0
  91. data/modules/apache/manifests/mod/proxy_http.pp +4 -0
  92. data/modules/apache/manifests/mod/python.pp +5 -0
  93. data/modules/apache/manifests/mod/reqtimeout.pp +12 -0
  94. data/modules/apache/manifests/mod/rewrite.pp +4 -0
  95. data/modules/apache/manifests/mod/rpaf.pp +20 -0
  96. data/modules/apache/manifests/mod/setenvif.pp +12 -0
  97. data/modules/apache/manifests/mod/ssl.pp +26 -0
  98. data/modules/apache/manifests/mod/status.pp +42 -0
  99. data/modules/apache/manifests/mod/suphp.pp +14 -0
  100. data/modules/apache/manifests/mod/userdir.pp +17 -0
  101. data/modules/apache/manifests/mod/vhost_alias.pp +3 -0
  102. data/modules/apache/manifests/mod/worker.pp +75 -0
  103. data/modules/apache/manifests/mod/wsgi.pp +21 -0
  104. data/modules/apache/manifests/mod/xsendfile.pp +4 -0
  105. data/modules/apache/manifests/mod.pp +120 -0
  106. data/modules/apache/manifests/namevirtualhost.pp +9 -0
  107. data/modules/apache/manifests/package.pp +48 -0
  108. data/modules/apache/manifests/params.pp +207 -0
  109. data/modules/apache/manifests/peruser/multiplexer.pp +17 -0
  110. data/modules/apache/manifests/peruser/processor.pp +17 -0
  111. data/modules/apache/manifests/php.pp +18 -0
  112. data/modules/apache/manifests/proxy.pp +15 -0
  113. data/modules/apache/manifests/python.pp +18 -0
  114. data/modules/apache/manifests/service.pp +35 -0
  115. data/modules/apache/manifests/ssl.pp +18 -0
  116. data/modules/apache/manifests/vhost.pp +516 -0
  117. data/modules/apache/spec/acceptance/basic_spec.rb +12 -0
  118. data/modules/apache/spec/acceptance/class_spec.rb +58 -0
  119. data/modules/apache/spec/acceptance/default_mods_spec.rb +97 -0
  120. data/modules/apache/spec/acceptance/itk_spec.rb +35 -0
  121. data/modules/apache/spec/acceptance/mod_php_spec.rb +52 -0
  122. data/modules/apache/spec/acceptance/mod_suphp_spec.rb +44 -0
  123. data/modules/apache/spec/acceptance/nodesets/centos-64-x64.yml +8 -0
  124. data/modules/apache/spec/acceptance/nodesets/default.yml +8 -0
  125. data/modules/apache/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml +8 -0
  126. data/modules/apache/spec/acceptance/nodesets/vagrant.key +27 -0
  127. data/modules/apache/spec/acceptance/prefork_worker_spec.rb +81 -0
  128. data/modules/apache/spec/acceptance/service_spec.rb +19 -0
  129. data/modules/apache/spec/acceptance/vhost_spec.rb +290 -0
  130. data/modules/apache/spec/classes/apache_spec.rb +464 -0
  131. data/modules/apache/spec/classes/dev_spec.rb +38 -0
  132. data/modules/apache/spec/classes/mod/auth_kerb_spec.rb +41 -0
  133. data/modules/apache/spec/classes/mod/authnz_ldap_spec.rb +65 -0
  134. data/modules/apache/spec/classes/mod/dav_svn_spec.rb +41 -0
  135. data/modules/apache/spec/classes/mod/dev_spec.rb +23 -0
  136. data/modules/apache/spec/classes/mod/dir_spec.rb +88 -0
  137. data/modules/apache/spec/classes/mod/event_spec.rb +17 -0
  138. data/modules/apache/spec/classes/mod/fastcgi_spec.rb +32 -0
  139. data/modules/apache/spec/classes/mod/fcgid_spec.rb +41 -0
  140. data/modules/apache/spec/classes/mod/info_spec.rb +99 -0
  141. data/modules/apache/spec/classes/mod/itk_spec.rb +31 -0
  142. data/modules/apache/spec/classes/mod/mime_magic_spec.rb +93 -0
  143. data/modules/apache/spec/classes/mod/passenger_spec.rb +112 -0
  144. data/modules/apache/spec/classes/mod/perl_spec.rb +41 -0
  145. data/modules/apache/spec/classes/mod/peruser_spec.rb +17 -0
  146. data/modules/apache/spec/classes/mod/php_spec.rb +99 -0
  147. data/modules/apache/spec/classes/mod/prefork_spec.rb +47 -0
  148. data/modules/apache/spec/classes/mod/proxy_html_spec.rb +45 -0
  149. data/modules/apache/spec/classes/mod/python_spec.rb +41 -0
  150. data/modules/apache/spec/classes/mod/rpaf_spec.rb +77 -0
  151. data/modules/apache/spec/classes/mod/ssl_spec.rb +53 -0
  152. data/modules/apache/spec/classes/mod/status_spec.rb +166 -0
  153. data/modules/apache/spec/classes/mod/suphp_spec.rb +27 -0
  154. data/modules/apache/spec/classes/mod/worker_spec.rb +44 -0
  155. data/modules/apache/spec/classes/mod/wsgi_spec.rb +54 -0
  156. data/modules/apache/spec/classes/params_spec.rb +21 -0
  157. data/modules/apache/spec/classes/service_spec.rb +109 -0
  158. data/modules/apache/spec/defines/mod_spec.rb +105 -0
  159. data/modules/apache/spec/defines/vhost_spec.rb +1152 -0
  160. data/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb +1 -0
  161. data/modules/apache/spec/spec.opts +4 -0
  162. data/modules/apache/spec/spec_helper.rb +1 -0
  163. data/modules/apache/spec/spec_helper_acceptance.rb +27 -0
  164. data/modules/apache/spec/unit/provider/a2mod/gentoo_spec.rb +184 -0
  165. data/modules/apache/templates/confd/no-accf.conf.erb +4 -0
  166. data/modules/apache/templates/httpd.conf.erb +92 -0
  167. data/modules/apache/templates/listen.erb +6 -0
  168. data/modules/apache/templates/mod/alias.conf.erb +9 -0
  169. data/modules/apache/templates/mod/authnz_ldap.conf.erb +5 -0
  170. data/modules/apache/templates/mod/autoindex.conf.erb +56 -0
  171. data/modules/apache/templates/mod/cgid.conf.erb +1 -0
  172. data/modules/apache/templates/mod/dav_fs.conf.erb +1 -0
  173. data/modules/apache/templates/mod/deflate.conf.erb +4 -0
  174. data/modules/apache/templates/mod/dir.conf.erb +1 -0
  175. data/modules/apache/templates/mod/disk_cache.conf.erb +8 -0
  176. data/modules/apache/templates/mod/event.conf.erb +9 -0
  177. data/modules/apache/templates/mod/fastcgi.conf.erb +6 -0
  178. data/modules/apache/templates/mod/info.conf.erb +6 -0
  179. data/modules/apache/templates/mod/itk.conf.erb +8 -0
  180. data/modules/apache/templates/mod/ldap.conf.erb +7 -0
  181. data/modules/apache/templates/mod/mime.conf.erb +36 -0
  182. data/modules/apache/templates/mod/mime_magic.conf.erb +1 -0
  183. data/modules/apache/templates/mod/mpm_event.conf.erb +9 -0
  184. data/modules/apache/templates/mod/negotiation.conf.erb +2 -0
  185. data/modules/apache/templates/mod/nss.conf.erb +228 -0
  186. data/modules/apache/templates/mod/passenger.conf.erb +30 -0
  187. data/modules/apache/templates/mod/peruser.conf.erb +12 -0
  188. data/modules/apache/templates/mod/php5.conf.erb +30 -0
  189. data/modules/apache/templates/mod/prefork.conf.erb +8 -0
  190. data/modules/apache/templates/mod/proxy.conf.erb +23 -0
  191. data/modules/apache/templates/mod/proxy_html.conf.erb +24 -0
  192. data/modules/apache/templates/mod/reqtimeout.conf.erb +2 -0
  193. data/modules/apache/templates/mod/rpaf.conf.erb +15 -0
  194. data/modules/apache/templates/mod/setenvif.conf.erb +34 -0
  195. data/modules/apache/templates/mod/ssl.conf.erb +24 -0
  196. data/modules/apache/templates/mod/status.conf.erb +12 -0
  197. data/modules/apache/templates/mod/suphp.conf.erb +19 -0
  198. data/modules/apache/templates/mod/userdir.conf.erb +19 -0
  199. data/modules/apache/templates/mod/worker.conf.erb +9 -0
  200. data/modules/apache/templates/mod/wsgi.conf.erb +13 -0
  201. data/modules/apache/templates/namevirtualhost.erb +8 -0
  202. data/modules/apache/templates/ports_header.erb +5 -0
  203. data/modules/apache/templates/vhost/_aliases.erb +12 -0
  204. data/modules/apache/templates/vhost/_block.erb +10 -0
  205. data/modules/apache/templates/vhost/_custom_fragment.erb +5 -0
  206. data/modules/apache/templates/vhost/_directories.erb +143 -0
  207. data/modules/apache/templates/vhost/_error_document.erb +7 -0
  208. data/modules/apache/templates/vhost/_fastcgi.erb +18 -0
  209. data/modules/apache/templates/vhost/_itk.erb +28 -0
  210. data/modules/apache/templates/vhost/_php_admin.erb +12 -0
  211. data/modules/apache/templates/vhost/_proxy.erb +20 -0
  212. data/modules/apache/templates/vhost/_rack.erb +7 -0
  213. data/modules/apache/templates/vhost/_redirect.erb +12 -0
  214. data/modules/apache/templates/vhost/_requestheader.erb +10 -0
  215. data/modules/apache/templates/vhost/_rewrite.erb +40 -0
  216. data/modules/apache/templates/vhost/_scriptalias.erb +24 -0
  217. data/modules/apache/templates/vhost/_serveralias.erb +7 -0
  218. data/modules/apache/templates/vhost/_setenv.erb +12 -0
  219. data/modules/apache/templates/vhost/_ssl.erb +41 -0
  220. data/modules/apache/templates/vhost/_suphp.erb +11 -0
  221. data/modules/apache/templates/vhost/_wsgi.erb +15 -0
  222. data/modules/apache/templates/vhost.conf.erb +63 -0
  223. data/modules/apache/tests/apache.pp +6 -0
  224. data/modules/apache/tests/dev.pp +1 -0
  225. data/modules/apache/tests/init.pp +1 -0
  226. data/modules/apache/tests/mod_load_params.pp +11 -0
  227. data/modules/apache/tests/mods.pp +9 -0
  228. data/modules/apache/tests/mods_custom.pp +16 -0
  229. data/modules/apache/tests/php.pp +4 -0
  230. data/modules/apache/tests/vhost.pp +237 -0
  231. data/modules/apache/tests/vhost_directories.pp +30 -0
  232. data/modules/apache/tests/vhost_ip_based.pp +25 -0
  233. data/modules/apache/tests/vhost_ssl.pp +23 -0
  234. data/modules/apache/tests/vhosts_without_listen.pp +53 -0
  235. data/modules/freighthop/manifests/database/mysql/grant.pp +11 -0
  236. data/modules/freighthop/manifests/database/mysql.pp +5 -15
  237. data/modules/freighthop/manifests/database/postgres.pp +2 -2
  238. data/modules/freighthop/manifests/database.pp +3 -3
  239. data/modules/freighthop/manifests/init.pp +6 -23
  240. data/modules/freighthop/manifests/language/ruby.pp +5 -25
  241. data/modules/freighthop/manifests/language.pp +1 -4
  242. data/modules/freighthop/manifests/packages.pp +2 -12
  243. data/modules/freighthop/manifests/params.pp +19 -11
  244. data/modules/freighthop/manifests/web/apache.pp +60 -0
  245. data/modules/freighthop/manifests/web/nginx.pp +22 -0
  246. data/modules/freighthop/manifests/web/ssl.pp +13 -0
  247. data/modules/freighthop/manifests/web.pp +25 -21
  248. data/modules/freighthop/templates/apache/passenger.conf.erb +18 -0
  249. data/modules/freighthop/templates/nginx/vagrant-rails.conf.erb +5 -3
  250. data/modules/rbenv/AUTHORS +11 -0
  251. data/modules/rbenv/CHANGELOG.md +70 -0
  252. data/modules/rbenv/Gemfile +5 -10
  253. data/modules/rbenv/Gemfile.lock +16 -58
  254. data/modules/rbenv/Modulefile +7 -7
  255. data/modules/rbenv/README.md +156 -20
  256. data/modules/rbenv/Rakefile +18 -24
  257. data/modules/rbenv/TODO +10 -0
  258. data/modules/rbenv/bin/autospec +16 -0
  259. data/modules/rbenv/bin/facter +16 -0
  260. data/modules/rbenv/bin/filebucket +16 -0
  261. data/modules/rbenv/bin/hiera +16 -0
  262. data/modules/rbenv/bin/htmldiff +16 -0
  263. data/modules/rbenv/bin/ldiff +16 -0
  264. data/modules/rbenv/bin/pi +16 -0
  265. data/modules/rbenv/bin/puppet +16 -0
  266. data/modules/rbenv/bin/puppet-lint +16 -0
  267. data/modules/rbenv/bin/puppet-module +16 -0
  268. data/modules/rbenv/bin/puppetca +16 -0
  269. data/modules/rbenv/bin/puppetd +16 -0
  270. data/modules/rbenv/bin/puppetdoc +16 -0
  271. data/modules/rbenv/bin/puppetmasterd +16 -0
  272. data/modules/rbenv/bin/puppetqd +16 -0
  273. data/modules/rbenv/bin/puppetrun +16 -0
  274. data/modules/rbenv/bin/rake +16 -0
  275. data/modules/rbenv/bin/ralsh +16 -0
  276. data/modules/rbenv/bin/rspec +16 -0
  277. data/modules/rbenv/bin/rspec-puppet-init +16 -0
  278. data/modules/rbenv/lib/puppet/provider/rbenvgem/default.rb +50 -0
  279. data/modules/rbenv/lib/puppet/type/rbenvgem.rb +62 -0
  280. data/modules/rbenv/manifests/bundle.pp +36 -0
  281. data/modules/rbenv/manifests/client.pp +48 -0
  282. data/modules/rbenv/manifests/compile.pp +102 -0
  283. data/modules/rbenv/manifests/definition.pp +31 -0
  284. data/modules/rbenv/manifests/dependencies/centos.pp +25 -0
  285. data/modules/rbenv/manifests/dependencies/suse.pp +28 -0
  286. data/modules/rbenv/manifests/dependencies/ubuntu.pp +17 -0
  287. data/modules/rbenv/manifests/dependencies.pp +8 -0
  288. data/modules/rbenv/manifests/gem.pp +29 -0
  289. data/modules/rbenv/manifests/install.pp +55 -0
  290. data/modules/rbenv/manifests/plugin/rbenvvars.pp +16 -0
  291. data/modules/rbenv/manifests/plugin/rubybuild.pp +16 -0
  292. data/modules/rbenv/manifests/plugin.pp +40 -0
  293. data/modules/rbenv/metadata.json +99 -31
  294. data/modules/rbenv/spec/classes/dependencies_spec.rb +20 -0
  295. data/modules/rbenv/spec/defines/rbenv__compile_spec.rb +34 -0
  296. data/modules/rbenv/spec/defines/rbenv__definition_spec.rb +40 -0
  297. data/modules/rbenv/spec/defines/rbenv__install_spec.rb +24 -0
  298. data/modules/rbenv/spec/defines/rbenv__plugin__rbenvvars_spec.rb +14 -0
  299. data/modules/rbenv/spec/defines/rbenv__plugin__rubybuild_spec.rb +14 -0
  300. data/modules/rbenv/spec/defines/rbenv__plugin_spec.rb +31 -0
  301. data/modules/rbenv/spec/fixtures/manifests/site.pp +0 -0
  302. data/modules/rbenv/spec/spec_helper.rb +6 -1
  303. data/modules/rbenv/templates/Gemfile.erb +5 -0
  304. data/modules/rbenv/templates/dot.rbenvrc.erb +8 -0
  305. metadata +271 -23
  306. data/modules/rbenv/CHANGELOG +0 -33
  307. data/modules/rbenv/LICENSE +0 -20
  308. data/modules/rbenv/manifests/alias.pp +0 -32
  309. data/modules/rbenv/manifests/global.pp +0 -22
  310. data/modules/rbenv/manifests/init.pp +0 -30
  311. data/modules/rbenv/manifests/params.pp +0 -16
  312. data/modules/rbenv/manifests/rehash.pp +0 -28
  313. data/modules/rbenv/manifests/version.pp +0 -63
  314. data/modules/rbenv/spec/classes/rbenv__global_spec.rb +0 -31
  315. data/modules/rbenv/spec/classes/rbenv_spec.rb +0 -30
  316. data/modules/rbenv/spec/defines/rbenv__alias_spec.rb +0 -22
  317. data/modules/rbenv/spec/defines/rbenv__rehash_spec.rb +0 -22
  318. data/modules/rbenv/spec/defines/rbenv__version_spec.rb +0 -60
  319. data/modules/rbenv/spec/spec_helper_system.rb +0 -16
  320. data/modules/rbenv/spec/system/basic_spec.rb +0 -13
  321. data/modules/rbenv/templates/etc/profile.d/rbenv.sh.erb +0 -2
  322. data/modules/rbenv/tests/init.pp +0 -12
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'ldiff' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('diff-lcs', 'ldiff')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'pi' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'pi')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppet' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'puppet')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppet-lint' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet-lint', 'puppet-lint')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppet-module' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet-module', 'puppet-module')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppetca' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'puppetca')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppetd' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'puppetd')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppetdoc' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'puppetdoc')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppetmasterd' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'puppetmasterd')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppetqd' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'puppetqd')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'puppetrun' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'puppetrun')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rake', 'rake')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'ralsh' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('puppet', 'ralsh')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rspec' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rspec-core', 'rspec')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rspec-puppet-init' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rspec-puppet', 'rspec-puppet-init')
@@ -0,0 +1,50 @@
1
+ Puppet::Type.type(:rbenvgem).provide :default do
2
+ desc "Maintains gems inside an RBenv setup"
3
+
4
+ commands :su => 'su'
5
+
6
+ def install
7
+ args = ['install', '--no-rdoc', '--no-ri']
8
+ args << "-v#{resource[:ensure]}" if !resource[:ensure].kind_of?(Symbol)
9
+ args << gem_name
10
+
11
+ output = gem(*args)
12
+ fail "Could not install: #{output.chomp}" if output.include?('ERROR')
13
+ end
14
+
15
+ def uninstall
16
+ gem 'uninstall', '-aIx', gem_name
17
+ end
18
+
19
+ def latest
20
+ @latest ||= list(:remote)
21
+ end
22
+
23
+ def current
24
+ list
25
+ end
26
+
27
+ private
28
+ def gem_name
29
+ resource[:gemname]
30
+ end
31
+
32
+ def gem(*args)
33
+ exe = "RBENV_VERSION=#{resource[:ruby]} " + resource[:rbenv] + '/bin/gem'
34
+ su('-', resource[:user], '-c', [exe, *args].join(' '))
35
+ end
36
+
37
+ def list(where = :local)
38
+ args = ['list', where == :remote ? '--remote' : '--local', "#{gem_name}$"]
39
+
40
+ gem(*args).lines.map do |line|
41
+ line =~ /^(?:\S+)\s+\((.+)\)/
42
+
43
+ return nil unless $1
44
+
45
+ # Fetch the version number
46
+ ver = $1.split(/,\s*/)
47
+ ver.empty? ? nil : ver
48
+ end.first
49
+ end
50
+ end
@@ -0,0 +1,62 @@
1
+ Puppet::Type.newtype(:rbenvgem) do
2
+ desc 'A Ruby Gem installed inside an rbenv-installed Ruby'
3
+
4
+ ensurable do
5
+ newvalue(:present) { provider.install }
6
+ newvalue(:absent ) { provider.uninstall }
7
+
8
+ newvalue(:latest) {
9
+ provider.uninstall if provider.current
10
+ provider.install
11
+ }
12
+
13
+ newvalue(/./) do
14
+ provider.uninstall if provider.current
15
+ provider.install
16
+ end
17
+
18
+ aliasvalue :installed, :present
19
+
20
+ defaultto :present
21
+
22
+ def retrieve
23
+ provider.current || :absent
24
+ end
25
+
26
+ def insync?(current)
27
+ requested = @should.first
28
+
29
+ case requested
30
+ when :present, :installed
31
+ current != :absent
32
+ when :latest
33
+ current == provider.latest
34
+ when :absent
35
+ current == :absent
36
+ else
37
+ current == [requested]
38
+ end
39
+ end
40
+ end
41
+
42
+ newparam(:name) do
43
+ desc 'Gem qualified name within an rbenv repository'
44
+ end
45
+
46
+ newparam(:gemname) do
47
+ desc 'The Gem name'
48
+ end
49
+
50
+ newparam(:ruby) do
51
+ desc 'The ruby interpreter version'
52
+ end
53
+
54
+ newparam(:rbenv) do
55
+ desc 'The rbenv root'
56
+ end
57
+
58
+ newparam(:user) do
59
+ desc 'The rbenv owner'
60
+ end
61
+
62
+ end
@@ -0,0 +1,36 @@
1
+ define rbenv::bundle(
2
+ $home,
3
+ $user,
4
+ $group = $user,
5
+ $content = '',
6
+ $gems = ''
7
+ ) {
8
+
9
+ if ( $gems ) {
10
+ $gemfile = template('rbenv/Gemfile.erb')
11
+ } elsif ( $content ) {
12
+ $gemfile = $content
13
+ } else {
14
+ fail('bundle requires either a gem list or a Gemfile')
15
+ }
16
+
17
+ file {"${user}/Gemfile":
18
+ ensure => present,
19
+ path => "${home}/Gemfile",
20
+ owner => $user,
21
+ group => $group,
22
+ content => $gemfile,
23
+ backup => false,
24
+ require => Rbenv::Client[$user],
25
+ }
26
+
27
+ exec {"${user} bundle":
28
+ command => "bundle --binstubs=${home}/bin --path=${home}/.bundle",
29
+ cwd => $home,
30
+ user => $user,
31
+ group => $group,
32
+ path => "${home}/bin:${home}/.rbenv/shims:/bin:/usr/bin",
33
+ creates => "${home}/Gemfile.lock",
34
+ subscribe => File["${user}/Gemfile"],
35
+ }
36
+ }
@@ -0,0 +1,48 @@
1
+ define rbenv::client(
2
+ $user,
3
+ $home,
4
+ $ruby,
5
+ $owner,
6
+ $source,
7
+ $rc = ".profile"
8
+ ) {
9
+ if ! defined(Exec["rbenv::compile ${owner} ${ruby}"]) {
10
+ fail("Ruby version ${ruby} is not compiled for ${owner}")
11
+ }
12
+
13
+ file {"${user}/.rbenv":
14
+ ensure => link,
15
+ path => "${home}/.rbenv",
16
+ target => "${source}/.rbenv",
17
+ }
18
+
19
+ file {"${user}/${rc}":
20
+ ensure => link,
21
+ path => "${home}/${rc}",
22
+ target => "${source}/${rc}",
23
+ }
24
+
25
+ file {"${user}/.gemrc":
26
+ ensure => link,
27
+ path => "${home}/.gemrc",
28
+ target => "${source}/.gemrc",
29
+ }
30
+
31
+ file {"${user}/.rbenv-version":
32
+ ensure => present,
33
+ path => "${home}/.rbenv-version",
34
+ content => "$ruby\n",
35
+ }
36
+
37
+ file {"${user}/bin":
38
+ ensure => directory,
39
+ path => "${home}/bin",
40
+ owner => $user,
41
+ }
42
+
43
+ file {"${user}/bin/rbenv":
44
+ ensure => link,
45
+ path => "${home}/bin/rbenv",
46
+ target => "${source}/.rbenv/bin/rbenv",
47
+ }
48
+ }
@@ -0,0 +1,102 @@
1
+ # The following part compiles and installs the chosen ruby version,
2
+ # using the "ruby-build" rbenv plugin.
3
+ #
4
+ define rbenv::compile(
5
+ $user,
6
+ $ruby = $title,
7
+ $group = $user,
8
+ $home = '',
9
+ $root = '',
10
+ $source = '',
11
+ $global = false,
12
+ $configure_opts = '--disable-install-doc',
13
+ ) {
14
+
15
+ # Workaround http://projects.puppetlabs.com/issues/9848
16
+ $home_path = $home ? { '' => "/home/${user}", default => $home }
17
+ $root_path = $root ? { '' => "${home_path}/.rbenv", default => $root }
18
+
19
+ $bin = "${root_path}/bin"
20
+ $shims = "${root_path}/shims"
21
+ $versions = "${root_path}/versions"
22
+ $global_path = "${root_path}/version"
23
+ $path = [ $shims, $bin, '/bin', '/usr/bin' ]
24
+
25
+ if ! defined( Class['rbenv::dependencies'] ) {
26
+ require rbenv::dependencies
27
+ }
28
+
29
+ # If no ruby-build has been specified and the default resource hasn't been
30
+ # parsed
31
+ $custom_or_default = Rbenv::Plugin["rbenv::plugin::rubybuild::${user}"]
32
+ $default = Rbenv::Plugin::Rubybuild["rbenv::rubybuild::${user}"]
33
+ if ! defined($custom_or_default) and ! defined($default) {
34
+ debug("No ruby-build found for ${user}, going to add the default one")
35
+ rbenv::plugin::rubybuild { "rbenv::rubybuild::${user}":
36
+ user => $user,
37
+ group => $group,
38
+ home => $home,
39
+ root => $root
40
+ }
41
+ }
42
+
43
+ if $source {
44
+ rbenv::definition { "rbenv::definition ${user} ${ruby}":
45
+ user => $user,
46
+ group => $group,
47
+ source => $source,
48
+ ruby => $ruby,
49
+ home => $home,
50
+ root => $root,
51
+ require => Rbenv::Plugin["rbenv::plugin::rubybuild::${user}"],
52
+ before => Exec["rbenv::compile ${user} ${ruby}"]
53
+ }
54
+ }
55
+
56
+ # Set Timeout to disabled cause we need a lot of time to compile.
57
+ # Use HOME variable and define PATH correctly.
58
+ exec { "rbenv::compile ${user} ${ruby}":
59
+ command => "rbenv install ${ruby} && touch ${root_path}/.rehash",
60
+ timeout => 0,
61
+ user => $user,
62
+ group => $group,
63
+ cwd => $home_path,
64
+ environment => [ "HOME=${home_path}", "CONFIGURE_OPTS=${configure_opts}" ],
65
+ creates => "${versions}/${ruby}",
66
+ path => $path,
67
+ require => Rbenv::Plugin["rbenv::plugin::rubybuild::${user}"],
68
+ before => Exec["rbenv::rehash ${user} ${ruby}"],
69
+ }
70
+
71
+ exec { "rbenv::rehash ${user} ${ruby}":
72
+ command => "rbenv rehash && rm -f ${root_path}/.rehash",
73
+ user => $user,
74
+ group => $group,
75
+ cwd => $home_path,
76
+ onlyif => "[ -e '${root_path}/.rehash' ]",
77
+ environment => [ "HOME=${home_path}" ],
78
+ path => $path,
79
+ }
80
+
81
+ # Install bundler
82
+ #
83
+ rbenv::gem {"rbenv::bundler ${user} ${ruby}":
84
+ user => $user,
85
+ ruby => $ruby,
86
+ gem => 'bundler',
87
+ home => $home_path,
88
+ root => $root_path,
89
+ }
90
+
91
+ # Set default global ruby version for rbenv, if requested
92
+ #
93
+ if $global {
94
+ file { "rbenv::global ${user}":
95
+ path => $global_path,
96
+ content => "$ruby\n",
97
+ owner => $user,
98
+ group => $group,
99
+ require => Exec["rbenv::compile ${user} ${ruby}"]
100
+ }
101
+ }
102
+ }
@@ -0,0 +1,31 @@
1
+ define rbenv::definition(
2
+ $user,
3
+ $source,
4
+ $ruby = $title,
5
+ $group = $user,
6
+ $home = '',
7
+ $root = ''
8
+ ) {
9
+
10
+ $home_path = $home ? { '' => "/home/${user}", default => $home }
11
+ $root_path = $root ? { '' => "${home_path}/.rbenv", default => $root }
12
+
13
+ $destination = "${root_path}/plugins/ruby-build/share/ruby-build/${ruby}"
14
+
15
+ if $source =~ /^puppet:/ {
16
+ file { "rbenv::definition-file ${user} ${ruby}":
17
+ ensure => file,
18
+ source => $source,
19
+ group => $group,
20
+ path => $destination,
21
+ require => Exec["rbenv::plugin::checkout ${user} ruby-build"],
22
+ }
23
+ } elsif $source =~ /http(s)?:/ {
24
+ exec { "rbenv::definition-file ${user} ${ruby}":
25
+ command => "wget ${source} -O ${destination}",
26
+ creates => $destination,
27
+ user => $user,
28
+ require => Exec["rbenv::plugin::checkout ${user} ruby-build"],
29
+ }
30
+ }
31
+ }
@@ -0,0 +1,25 @@
1
+ class rbenv::dependencies::centos {
2
+
3
+ # These are the "build essentials" for RHEL / CentOS
4
+ if ! defined(Package['autoconf']) { package { 'autoconf': ensure => installed } }
5
+ if ! defined(Package['automake']) { package { 'automake': ensure => installed } }
6
+ if ! defined(Package['binutils']) { package { 'binutils': ensure => installed } }
7
+ if ! defined(Package['bison']) { package { 'bison': ensure => installed } }
8
+ if ! defined(Package['flex']) { package { 'flex': ensure => installed } }
9
+ if ! defined(Package['gcc']) { package { 'gcc': ensure => installed } }
10
+ if ! defined(Package['gcc-c++']) { package { 'gcc-c++': ensure => installed } }
11
+ if ! defined(Package['gettext']) { package { 'gettext': ensure => installed } }
12
+ if ! defined(Package['libtool']) { package { 'libtool': ensure => installed } }
13
+ if ! defined(Package['make']) { package { 'make': ensure => installed } }
14
+ if ! defined(Package['patch']) { package { 'patch': ensure => installed } }
15
+ if ! defined(Package['pkgconfig']) { package { 'pkgconfig': ensure => installed } }
16
+
17
+ # Other packages required to build a proper Ruby
18
+ if ! defined(Package['readline-devel']) { package { 'readline-devel': ensure => installed } }
19
+ if ! defined(Package['openssl-devel']) { package { 'openssl-devel': ensure => installed } }
20
+ if ! defined(Package['zlib-devel']) { package { 'zlib-devel': ensure => installed } }
21
+
22
+ # Git and curl are needed for rbenv and ruby-build
23
+ if ! defined(Package['git']) { package { 'git': ensure => installed } }
24
+ if ! defined(Package['curl']) { package { 'curl': ensure => installed } }
25
+ }
@@ -0,0 +1,28 @@
1
+ class rbenv::dependencies::suse {
2
+
3
+ # These are the "build essentials" for SuSE
4
+ if ! defined(Package['autoconf']) { package { 'autoconf' : ensure => installed } }
5
+ if ! defined(Package['automake']) { package { 'automake' : ensure => installed } }
6
+ if ! defined(Package['binutils']) { package { 'binutils' : ensure => installed } }
7
+ if ! defined(Package['bison']) { package { 'bison' : ensure => installed } }
8
+ if ! defined(Package['flex']) { package { 'flex' : ensure => installed } }
9
+ if ! defined(Package['gcc']) { package { 'gcc' : ensure => installed } }
10
+ if ! defined(Package['gcc-c++']) { package { 'gcc-c++' : ensure => installed } }
11
+ if ! defined(Package['gettext']) { package { 'gettext' : ensure => installed, name => 'gettext-tools' } }
12
+ if ! defined(Package['libtool']) { package { 'libtool' : ensure => installed } }
13
+ if ! defined(Package['make']) { package { 'make' : ensure => installed } }
14
+ if ! defined(Package['patch']) { package { 'patch' : ensure => installed } }
15
+ if ! defined(Package['pkgconfig']) { package { 'pkgconfig': ensure => installed, name => 'pkg-config' } }
16
+
17
+ # Other packages required to build a proper Ruby
18
+ if ! defined(Package['readline-devel']) { package { 'readline-devel': ensure => installed } }
19
+ if ! defined(Package['openssl-devel']) { package { 'openssl-devel' : ensure => installed, name => 'libopenssl-devel'} }
20
+ if ! defined(Package['zlib-devel']) { package { 'zlib-devel' : ensure => installed } }
21
+ if ! defined(Package['libyaml-devel']) { package { 'libyaml-devel' : ensure => installed } }
22
+ if ! defined(Package['ncurses-devel']) { package { 'ncurses-devel' : ensure => installed } }
23
+
24
+ # Git and curl are needed for rbenv and ruby-build
25
+ if ! defined(Package['git']) { package { 'git' : ensure => installed } }
26
+ if ! defined(Package['curl']) { package { 'curl' : ensure => installed } }
27
+
28
+ }
@@ -0,0 +1,17 @@
1
+ class rbenv::dependencies::ubuntu {
2
+ if ! defined(Package['build-essential']) { package { 'build-essential': ensure => installed } }
3
+ if ! defined(Package['libc6-dev']) { package { 'libc6-dev': ensure => installed } }
4
+ if ! defined(Package['bison']) { package { 'bison': ensure => installed } }
5
+ if ! defined(Package['openssl']) { package { 'openssl': ensure => installed } }
6
+ if ! defined(Package['libreadline6']) { package { 'libreadline6': ensure => installed } }
7
+ if ! defined(Package['libreadline6-dev']) { package { 'libreadline6-dev': ensure => installed } }
8
+ if ! defined(Package['zlib1g']) { package { 'zlib1g': ensure => installed } }
9
+ if ! defined(Package['zlib1g-dev']) { package { 'zlib1g-dev': ensure => installed } }
10
+ if ! defined(Package['libssl-dev']) { package { 'libssl-dev': ensure => installed } }
11
+ if ! defined(Package['libyaml-dev']) { package { 'libyaml-dev': ensure => installed } }
12
+ if ! defined(Package['libxml2-dev']) { package { 'libxml2-dev': ensure => installed } }
13
+ if ! defined(Package['libxslt1-dev']) { package { 'libxslt1-dev': ensure => installed, alias =>'libxslt-dev' } }
14
+ if ! defined(Package['autoconf']) { package { 'autoconf': ensure => installed } }
15
+ if ! defined(Package['git']) { package { 'git': ensure => installed, name => 'git-core' } }
16
+ if ! defined(Package['curl']) { package { 'curl': ensure => installed } }
17
+ }