puppet 2.7.19 → 2.7.20.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puppet might be problematic. Click here for more details.

Files changed (324) hide show
  1. data/CONTRIBUTING.md +61 -238
  2. data/Gemfile +32 -0
  3. data/Gemfile.lock +44 -0
  4. data/LICENSE +1 -1
  5. data/README_DEVELOPER.md +300 -5
  6. data/Rakefile +41 -37
  7. data/ext/build_defaults.yaml +20 -0
  8. data/ext/debian/README.Debian +8 -0
  9. data/ext/debian/README.source +2 -0
  10. data/ext/debian/TODO.Debian +1 -0
  11. data/ext/debian/changelog.erb +1104 -0
  12. data/ext/debian/compat +1 -0
  13. data/ext/debian/control +142 -0
  14. data/ext/debian/copyright +361 -0
  15. data/ext/debian/docs +1 -0
  16. data/ext/debian/fileserver.conf +17 -0
  17. data/ext/debian/puppet-common.dirs +8 -0
  18. data/ext/debian/puppet-common.install +3 -0
  19. data/ext/debian/puppet-common.lintian-overrides +7 -0
  20. data/ext/debian/puppet-common.manpages +2 -0
  21. data/ext/debian/puppet-common.postinst +35 -0
  22. data/ext/debian/puppet-common.postrm +32 -0
  23. data/ext/debian/puppet-el.dirs +1 -0
  24. data/ext/debian/puppet-el.emacsen-install +25 -0
  25. data/ext/debian/puppet-el.emacsen-remove +11 -0
  26. data/ext/debian/puppet-el.emacsen-startup +9 -0
  27. data/ext/debian/puppet-el.install +1 -0
  28. data/ext/debian/puppet-testsuite.install +3 -0
  29. data/ext/debian/puppet-testsuite.lintian-overrides +4 -0
  30. data/ext/debian/puppet.NEWS +86 -0
  31. data/ext/debian/puppet.conf +14 -0
  32. data/ext/debian/puppet.default +7 -0
  33. data/ext/debian/puppet.dirs +1 -0
  34. data/ext/debian/puppet.init +118 -0
  35. data/ext/debian/puppet.install +4 -0
  36. data/ext/debian/puppet.lintian-overrides +3 -0
  37. data/ext/debian/puppet.logrotate +11 -0
  38. data/ext/debian/puppet.manpages +36 -0
  39. data/ext/debian/puppet.postinst +20 -0
  40. data/ext/debian/puppet.postrm +20 -0
  41. data/ext/debian/puppet.preinst +20 -0
  42. data/ext/debian/puppetmaster-common.install +5 -0
  43. data/ext/debian/puppetmaster-common.manpages +5 -0
  44. data/ext/debian/puppetmaster-common.puppetqd.default +27 -0
  45. data/ext/debian/puppetmaster-common.puppetqd.init +84 -0
  46. data/ext/debian/puppetmaster-passenger.dirs +4 -0
  47. data/ext/debian/puppetmaster-passenger.postinst +66 -0
  48. data/ext/debian/puppetmaster-passenger.postrm +33 -0
  49. data/ext/debian/puppetmaster.NEWS +13 -0
  50. data/ext/debian/puppetmaster.README.debian +16 -0
  51. data/ext/debian/puppetmaster.default +38 -0
  52. data/ext/debian/puppetmaster.dirs +1 -0
  53. data/ext/debian/puppetmaster.init +158 -0
  54. data/ext/debian/puppetmaster.install +1 -0
  55. data/ext/debian/puppetmaster.lintian-overrides +3 -0
  56. data/ext/debian/puppetmaster.manpages +1 -0
  57. data/ext/debian/puppetmaster.postinst +20 -0
  58. data/ext/debian/puppetmaster.postrm +5 -0
  59. data/ext/debian/puppetmaster.preinst +22 -0
  60. data/ext/debian/rules +127 -0
  61. data/ext/debian/source/format +1 -0
  62. data/ext/debian/source/options +1 -0
  63. data/ext/debian/vim-puppet.README.Debian +13 -0
  64. data/ext/debian/vim-puppet.dirs +3 -0
  65. data/ext/debian/vim-puppet.yaml +5 -0
  66. data/ext/debian/watch +2 -0
  67. data/ext/emacs/puppet-mode.el +1 -0
  68. data/{conf → ext}/osx/PackageInfo.plist +0 -0
  69. data/{conf → ext}/osx/createpackage.sh +0 -0
  70. data/ext/osx/file_mapping.yaml +38 -0
  71. data/ext/osx/preflight.erb +37 -0
  72. data/{tasks/rake/templates → ext/osx}/prototype.plist.erb +0 -0
  73. data/ext/packaging/README-Solaris.md +117 -0
  74. data/ext/packaging/README.md +255 -0
  75. data/ext/packaging/spec/spec_helper.rb +12 -0
  76. data/ext/packaging/spec/tasks/00_utils_spec.rb +66 -0
  77. data/ext/packaging/tasks/00_utils.rake +382 -0
  78. data/ext/packaging/tasks/10_setupvars.rake +71 -0
  79. data/ext/packaging/tasks/20_setupextravars.rake +25 -0
  80. data/ext/packaging/tasks/apple.rake +201 -0
  81. data/ext/packaging/tasks/clean.rake +5 -0
  82. data/ext/packaging/tasks/deb.rake +108 -0
  83. data/ext/packaging/tasks/doc.rake +20 -0
  84. data/ext/packaging/tasks/fetch.rake +18 -0
  85. data/ext/packaging/tasks/gem.rake +68 -0
  86. data/ext/packaging/tasks/ips.rake +80 -0
  87. data/ext/packaging/tasks/mock.rake +126 -0
  88. data/ext/packaging/tasks/pe_deb.rake +9 -0
  89. data/ext/packaging/tasks/pe_remote.rake +45 -0
  90. data/ext/packaging/tasks/pe_rpm.rake +21 -0
  91. data/ext/packaging/tasks/pe_ship.rake +30 -0
  92. data/ext/packaging/tasks/pe_sign.rake +27 -0
  93. data/ext/packaging/tasks/pe_sles.rake +96 -0
  94. data/ext/packaging/tasks/release.rake +73 -0
  95. data/ext/packaging/tasks/remote_build.rake +78 -0
  96. data/ext/packaging/tasks/rpm.rake +52 -0
  97. data/ext/packaging/tasks/ship.rake +78 -0
  98. data/ext/packaging/tasks/sign.rake +82 -0
  99. data/ext/packaging/tasks/tag.rake +8 -0
  100. data/ext/packaging/tasks/tar.rake +68 -0
  101. data/ext/packaging/tasks/template.rake +13 -0
  102. data/ext/packaging/tasks/update.rake +16 -0
  103. data/ext/packaging/tasks/version.rake +21 -0
  104. data/ext/project_data.yaml +24 -0
  105. data/{conf/redhat/puppet.spec → ext/redhat/puppet.spec.erb} +18 -10
  106. data/install.rb +8 -8
  107. data/lib/puppet.rb +2 -6
  108. data/lib/puppet/agent/locker.rb +2 -0
  109. data/lib/puppet/application.rb +1 -1
  110. data/lib/puppet/application/agent.rb +1 -1
  111. data/lib/puppet/application/apply.rb +1 -1
  112. data/lib/puppet/application/cert.rb +5 -6
  113. data/lib/puppet/application/describe.rb +1 -1
  114. data/lib/puppet/application/device.rb +1 -1
  115. data/lib/puppet/application/doc.rb +1 -1
  116. data/lib/puppet/application/filebucket.rb +1 -1
  117. data/lib/puppet/application/inspect.rb +1 -1
  118. data/lib/puppet/application/kick.rb +1 -1
  119. data/lib/puppet/application/master.rb +1 -1
  120. data/lib/puppet/application/resource.rb +1 -1
  121. data/lib/puppet/defaults.rb +21 -3
  122. data/lib/puppet/external/dot.rb +1 -1
  123. data/lib/puppet/face/help/global.erb +1 -1
  124. data/lib/puppet/face/module/install.rb +1 -1
  125. data/lib/puppet/face/module/list.rb +1 -1
  126. data/lib/puppet/face/module/uninstall.rb +1 -1
  127. data/lib/puppet/face/node/clean.rb +23 -18
  128. data/lib/puppet/face/parser.rb +11 -2
  129. data/lib/puppet/file_collection.rb +16 -27
  130. data/lib/puppet/file_collection/lookup.rb +6 -16
  131. data/lib/puppet/file_serving/base.rb +4 -4
  132. data/lib/puppet/indirector/catalog/static_compiler.rb +3 -4
  133. data/lib/puppet/indirector/certificate/disabled_ca.rb +22 -0
  134. data/lib/puppet/indirector/certificate_request/disabled_ca.rb +22 -0
  135. data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +22 -0
  136. data/lib/puppet/indirector/face.rb +2 -2
  137. data/lib/puppet/indirector/key/disabled_ca.rb +22 -0
  138. data/lib/puppet/indirector/node/exec.rb +13 -1
  139. data/lib/puppet/indirector/request.rb +4 -0
  140. data/lib/puppet/metatype/manager.rb +17 -10
  141. data/lib/puppet/network/authstore.rb +1 -1
  142. data/lib/puppet/network/rights.rb +1 -2
  143. data/lib/puppet/node/environment.rb +1 -0
  144. data/lib/puppet/parameter/value.rb +9 -3
  145. data/lib/puppet/parser/ast.rb +1 -4
  146. data/lib/puppet/parser/files.rb +1 -1
  147. data/lib/puppet/parser/functions.rb +68 -22
  148. data/lib/puppet/parser/functions/create_resources.rb +2 -3
  149. data/lib/puppet/parser/functions/shellquote.rb +21 -25
  150. data/lib/puppet/parser/lexer.rb +40 -6
  151. data/lib/puppet/parser/relationship.rb +3 -1
  152. data/lib/puppet/parser/resource.rb +2 -3
  153. data/lib/puppet/parser/resource/param.rb +3 -5
  154. data/lib/puppet/parser/scope.rb +7 -4
  155. data/lib/puppet/property.rb +5 -3
  156. data/lib/puppet/provider.rb +5 -5
  157. data/lib/puppet/provider/aixobject.rb +1 -1
  158. data/lib/puppet/provider/augeas/augeas.rb +1 -1
  159. data/lib/puppet/provider/exec/windows.rb +1 -1
  160. data/lib/puppet/provider/file/windows.rb +10 -29
  161. data/lib/puppet/provider/group/groupadd.rb +2 -3
  162. data/lib/puppet/provider/group/ldap.rb +1 -1
  163. data/lib/puppet/provider/group/windows_adsi.rb +1 -1
  164. data/lib/puppet/provider/ldap.rb +5 -1
  165. data/lib/puppet/provider/nameservice.rb +3 -3
  166. data/lib/puppet/provider/nameservice/directoryservice.rb +2 -2
  167. data/lib/puppet/provider/package/gem.rb +6 -2
  168. data/lib/puppet/provider/package/portage.rb +4 -2
  169. data/lib/puppet/provider/parsedfile.rb +1 -1
  170. data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +2 -2
  171. data/lib/puppet/provider/service/base.rb +2 -41
  172. data/lib/puppet/provider/service/daemontools.rb +1 -1
  173. data/lib/puppet/provider/service/launchd.rb +1 -1
  174. data/lib/puppet/provider/service/redhat.rb +6 -5
  175. data/lib/puppet/provider/service/runit.rb +1 -1
  176. data/lib/puppet/provider/service/service.rb +43 -0
  177. data/lib/puppet/provider/service/windows.rb +1 -8
  178. data/lib/puppet/provider/user/user_role_add.rb +2 -1
  179. data/lib/puppet/provider/user/useradd.rb +8 -3
  180. data/lib/puppet/provider/user/windows_adsi.rb +12 -1
  181. data/lib/puppet/provider/zone/solaris.rb +1 -1
  182. data/lib/puppet/rails/inventory_node.rb +26 -13
  183. data/lib/puppet/reports.rb +1 -1
  184. data/lib/puppet/resource.rb +20 -5
  185. data/lib/puppet/resource/status.rb +1 -1
  186. data/lib/puppet/ssl/certificate_authority.rb +2 -0
  187. data/lib/puppet/ssl/host.rb +31 -6
  188. data/lib/puppet/test/test_helper.rb +3 -1
  189. data/lib/puppet/transaction/event.rb +1 -1
  190. data/lib/puppet/transaction/report.rb +2 -2
  191. data/lib/puppet/type.rb +30 -25
  192. data/lib/puppet/type/augeas.rb +1 -1
  193. data/lib/puppet/type/cron.rb +2 -2
  194. data/lib/puppet/type/exec.rb +6 -6
  195. data/lib/puppet/type/file.rb +5 -15
  196. data/lib/puppet/type/file/content.rb +1 -1
  197. data/lib/puppet/type/file/ensure.rb +1 -1
  198. data/lib/puppet/type/file/mode.rb +1 -1
  199. data/lib/puppet/type/file/selcontext.rb +6 -2
  200. data/lib/puppet/type/file/source.rb +1 -1
  201. data/lib/puppet/type/mount.rb +1 -1
  202. data/lib/puppet/type/package.rb +1 -1
  203. data/lib/puppet/type/schedule.rb +1 -1
  204. data/lib/puppet/type/scheduled_task.rb +1 -1
  205. data/lib/puppet/type/tidy.rb +1 -1
  206. data/lib/puppet/type/whit.rb +16 -9
  207. data/lib/puppet/util.rb +27 -11
  208. data/lib/puppet/util/adsi.rb +25 -23
  209. data/lib/puppet/util/autoload.rb +1 -1
  210. data/lib/puppet/util/classgen.rb +1 -1
  211. data/lib/puppet/util/feature.rb +3 -1
  212. data/lib/puppet/util/fileparsing.rb +9 -9
  213. data/lib/puppet/util/filetype.rb +55 -40
  214. data/lib/puppet/util/instance_loader.rb +5 -5
  215. data/lib/puppet/util/instrumentation.rb +3 -5
  216. data/lib/puppet/util/log_paths.rb +1 -3
  217. data/lib/puppet/util/monkey_patches.rb +34 -8
  218. data/lib/puppet/util/platform.rb +7 -0
  219. data/lib/puppet/util/posix.rb +3 -3
  220. data/lib/puppet/util/provider_features.rb +2 -3
  221. data/lib/puppet/util/rdoc.rb +4 -3
  222. data/lib/puppet/util/reference.rb +1 -1
  223. data/lib/puppet/util/selinux.rb +31 -36
  224. data/lib/puppet/util/tagging.rb +28 -6
  225. data/lib/puppet/util/windows.rb +1 -0
  226. data/lib/puppet/util/windows/error.rb +1 -1
  227. data/lib/puppet/util/windows/process.rb +3 -3
  228. data/lib/puppet/util/windows/security.rb +9 -46
  229. data/lib/puppet/util/windows/sid.rb +96 -0
  230. data/lib/puppet/util/windows/user.rb +65 -2
  231. data/lib/puppet/util/zaml.rb +109 -59
  232. data/lib/puppet/version.rb +18 -0
  233. data/spec/fixtures/unit/util/filetype/aixtab_output +44 -0
  234. data/spec/fixtures/unit/util/filetype/suntab_output +9 -0
  235. data/spec/integration/defaults_spec.rb +26 -7
  236. data/spec/integration/parser/functions_spec.rb +0 -4
  237. data/spec/integration/util/file_locking_spec.rb +1 -1
  238. data/spec/integration/util/windows/security_spec.rb +3 -23
  239. data/spec/lib/puppet_spec/files.rb +3 -3
  240. data/spec/shared_contexts/platform.rb +8 -0
  241. data/spec/spec_helper.rb +6 -1
  242. data/spec/unit/application/queue_spec.rb +2 -1
  243. data/spec/unit/configurer_spec.rb +1 -1
  244. data/spec/unit/face/{instrumentation_data.rb → instrumentation_data_spec.rb} +0 -0
  245. data/spec/unit/face/{instrumentation_listener.rb → instrumentation_listener_spec.rb} +0 -0
  246. data/spec/unit/face/{instrumentation_probe.rb → instrumentation_probe_spec.rb} +0 -0
  247. data/spec/unit/indirector/catalog/static_compiler_spec.rb +194 -0
  248. data/spec/unit/indirector/certificate/disabled_ca_spec.rb +33 -0
  249. data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +33 -0
  250. data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +33 -0
  251. data/spec/unit/indirector/key/disabled_ca_spec.rb +33 -0
  252. data/spec/unit/indirector/request_spec.rb +22 -0
  253. data/spec/unit/network/http/webrick_spec.rb +0 -7
  254. data/spec/unit/node/environment_spec.rb +8 -8
  255. data/spec/unit/parser/ast_spec.rb +0 -5
  256. data/spec/unit/parser/collector_spec.rb +1 -0
  257. data/spec/unit/parser/files_spec.rb +2 -2
  258. data/spec/unit/parser/functions/create_resources_spec.rb +3 -4
  259. data/spec/unit/parser/functions/require_spec.rb +0 -6
  260. data/spec/unit/parser/functions/shellquote_spec.rb +0 -5
  261. data/spec/unit/parser/functions/template_spec.rb +6 -1
  262. data/spec/unit/parser/functions_spec.rb +73 -23
  263. data/spec/unit/parser/lexer_spec.rb +133 -8
  264. data/spec/unit/parser/relationship_spec.rb +24 -0
  265. data/spec/unit/parser/resource_spec.rb +0 -4
  266. data/spec/unit/parser/scope_spec.rb +2 -2
  267. data/spec/unit/property_spec.rb +21 -1
  268. data/spec/unit/provider/exec/posix_spec.rb +7 -6
  269. data/spec/unit/provider/file/windows_spec.rb +29 -29
  270. data/spec/unit/provider/group/groupadd_spec.rb +36 -30
  271. data/spec/unit/provider/group/windows_adsi_spec.rb +2 -2
  272. data/spec/unit/provider/package/gem_spec.rb +12 -0
  273. data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +14 -11
  274. data/spec/unit/provider/service/redhat_spec.rb +11 -1
  275. data/spec/unit/provider/service/windows_spec.rb +19 -0
  276. data/spec/unit/provider/user/ldap_spec.rb +22 -8
  277. data/spec/unit/provider/user/user_role_add_spec.rb +12 -0
  278. data/spec/unit/provider/user/useradd_spec.rb +146 -118
  279. data/spec/unit/provider/user/windows_adsi_spec.rb +24 -2
  280. data/spec/unit/puppet_spec.rb +10 -0
  281. data/spec/unit/resource/status_spec.rb +1 -1
  282. data/spec/unit/resource_spec.rb +73 -0
  283. data/spec/unit/ssl/certificate_authority_spec.rb +25 -1
  284. data/spec/unit/ssl/host_spec.rb +73 -27
  285. data/spec/unit/ssl/key_spec.rb +0 -4
  286. data/spec/unit/transaction/event_spec.rb +1 -1
  287. data/spec/unit/type/exec_spec.rb +1 -1
  288. data/spec/unit/type/file/content_spec.rb +6 -4
  289. data/spec/unit/type/file/{ctime.rb → ctime_spec.rb} +0 -0
  290. data/spec/unit/type/file/{mtime.rb → mtime_spec.rb} +0 -0
  291. data/spec/unit/type/file/{type.rb → type_spec.rb} +0 -0
  292. data/spec/unit/type/file_spec.rb +2 -12
  293. data/spec/unit/type/host_spec.rb +14 -5
  294. data/spec/unit/type/mount_spec.rb +8 -0
  295. data/spec/unit/type/scheduled_task_spec.rb +2 -2
  296. data/spec/unit/util/adsi_spec.rb +23 -8
  297. data/spec/unit/util/command_line_spec.rb +11 -2
  298. data/spec/unit/util/feature_spec.rb +12 -1
  299. data/spec/unit/util/filetype_spec.rb +161 -55
  300. data/spec/unit/util/log_spec.rb +1 -1
  301. data/spec/unit/util/monkey_patches_spec.rb +7 -0
  302. data/spec/unit/util/rdoc_spec.rb +8 -2
  303. data/spec/unit/util/selinux_spec.rb +24 -32
  304. data/spec/unit/util/windows/sid_spec.rb +100 -0
  305. data/spec/unit/util/zaml_spec.rb +165 -25
  306. data/spec/unit/util_spec.rb +3 -9
  307. data/spec/watchr.rb +2 -6
  308. data/tasks/rake/gem.rake +4 -2
  309. data/tasks/rake/sign.rake +1 -1
  310. data/test/language/parser.rb +1 -0
  311. data/test/language/scope.rb +0 -5
  312. data/test/language/snippets.rb +1 -2
  313. data/test/lib/puppettest.rb +16 -27
  314. data/test/lib/puppettest/parsertesting.rb +0 -1
  315. data/test/network/authstore.rb +2 -4
  316. data/test/puppet/defaults.rb +0 -4
  317. data/test/util/fileparsing.rb +2 -6
  318. metadata +1706 -1617
  319. data/conf/osx/preflight +0 -24
  320. data/spec/spec.opts +0 -4
  321. data/spec/unit/file_collection/lookup_spec.rb +0 -45
  322. data/spec/unit/file_collection_spec.rb +0 -52
  323. data/tasks/rake/apple.rake +0 -176
  324. data/test/puppet/errortest.rb +0 -19
@@ -0,0 +1 @@
1
+ 7
@@ -0,0 +1,142 @@
1
+ Source: puppet
2
+ Section: admin
3
+ Priority: optional
4
+ Maintainer: Puppet Labs <info@puppetlabs.com>
5
+ Uploaders: Micah Anderson <micah@debian.org>, Andrew Pollock <apollock@debian.org>, Nigel Kersten <nigel@explanatorygap.net>, Stig Sandbeck Mathisen <ssm@debian.org>
6
+ Build-Depends-Indep: ruby (>= 1.8.1), libopenssl-ruby, facter (>= 1.5), facter (<< 2.0)
7
+ Build-Depends: debhelper (>= 7.0.0), openssl
8
+ Standards-Version: 3.9.1
9
+ Vcs-Git: git://git.debian.org/git/pkg-puppet/puppet.git
10
+ Vcs-Browser: http://git.debian.org/?p=pkg-puppet/puppet.git
11
+ Homepage: http://projects.puppetlabs.com/projects/puppet
12
+
13
+ Package: puppet-common
14
+ Architecture: all
15
+ Depends: ${misc:Depends}, ruby1.8, libxmlrpc-ruby, libopenssl-ruby, libshadow-ruby1.8, libaugeas-ruby1.8, adduser, facter (>= 1.5), facter(<< 2.0), lsb-base, sysv-rc (>= 2.86) | file-rc
16
+ Recommends: lsb-release, debconf-utils
17
+ Suggests: libselinux-ruby1.8, librrd-ruby1.8
18
+ Breaks: puppet (<< 2.6.0~rc2-1), puppetmaster (<< 0.25.4-1)
19
+ Description: Centralized configuration management
20
+ Puppet lets you centrally manage every important aspect of your system
21
+ using a cross-platform specification language that manages all the
22
+ separate elements normally aggregated in different files, like users,
23
+ cron jobs, and hosts, along with obviously discrete elements like
24
+ packages, services, and files.
25
+ .
26
+ Puppet's simple declarative specification language provides powerful
27
+ classing abilities for drawing out the similarities between hosts while
28
+ allowing them to be as specific as necessary, and it handles dependency
29
+ and prerequisite relationships between objects clearly and explicitly.
30
+ .
31
+ This package contains the puppet software and documentation. For the startup
32
+ scripts needed to run the puppet agent and master, see the "puppet" and
33
+ "puppetmaster" packages, respectively.
34
+
35
+ Package: puppet
36
+ Architecture: all
37
+ Depends: ${misc:Depends}, puppet-common (= ${binary:Version}), ruby1.8
38
+ Recommends: rdoc
39
+ Suggests: puppet-el, vim-puppet
40
+ Description: Centralized configuration management - agent startup and compatibility scripts
41
+ This package contains the startup script and compatbility scripts for the
42
+ puppet agent, which is the process responsible for configuring the local node.
43
+ .
44
+ Puppet lets you centrally manage every important aspect of your system
45
+ using a cross-platform specification language that manages all the
46
+ separate elements normally aggregated in different files, like users,
47
+ cron jobs, and hosts, along with obviously discrete elements like
48
+ packages, services, and files.
49
+ .
50
+ Puppet's simple declarative specification language provides powerful
51
+ classing abilities for drawing out the similarities between hosts while
52
+ allowing them to be as specific as necessary, and it handles dependency
53
+ and prerequisite relationships between objects clearly and explicitly.
54
+
55
+ Package: puppetmaster-common
56
+ Architecture: all
57
+ Depends: ${misc:Depends}, ruby1.8, puppet-common (= ${binary:Version}), facter (>= 1.5), facter (<< 2.0), lsb-base
58
+ Breaks: puppet (<< 0.24.7-1), puppetmaster (<< 2.6.1~rc2-1)
59
+ Replaces: puppetmaster (<< 2.6.1~rc2-1)
60
+ Suggests: apache2 | nginx, mongrel, puppet-el, vim-puppet, stompserver, libstomp-ruby1.8,
61
+ rails (>= 1.2.3-2) | ruby-activerecord | libactiverecord-ruby, rdoc, libldap-ruby1.8
62
+ Description: Puppet master common scripts
63
+ This package contains common scripts for the puppet master,
64
+ which is the server hosting manifests and files for the puppet nodes.
65
+ .
66
+ Puppet lets you centrally manage every important aspect of your system
67
+ using a cross-platform specification language that manages all the
68
+ separate elements normally aggregated in different files, like users,
69
+ cron jobs, and hosts, along with obviously discrete elements like
70
+ packages, services, and files.
71
+ .
72
+ Puppet's simple declarative specification language provides powerful
73
+ classing abilities for drawing out the similarities between hosts while
74
+ allowing them to be as specific as necessary, and it handles dependency
75
+ and prerequisite relationships between objects clearly and explicitly.
76
+
77
+ Package: puppetmaster
78
+ Architecture: all
79
+ Depends: ${misc:Depends}, ruby1.8, puppetmaster-common (= ${source:Version}), facter (>= 1.5), facter (<< 2.0), lsb-base
80
+ Breaks: puppet (<< 0.24.7-1)
81
+ Suggests: apache2 | nginx, mongrel, puppet-el, vim-puppet, stompserver, libstomp-ruby1.8,
82
+ rails (>= 1.2.3-2) | ruby-activerecord | libactiverecord-ruby, rdoc, libldap-ruby1.8
83
+ Description: Centralized configuration management - master startup and compatibility scripts
84
+ This package contains the startup and compatibility scripts for the puppet
85
+ master, which is the server hosting manifests and files for the puppet nodes.
86
+ .
87
+ Puppet lets you centrally manage every important aspect of your system
88
+ using a cross-platform specification language that manages all the
89
+ separate elements normally aggregated in different files, like users,
90
+ cron jobs, and hosts, along with obviously discrete elements like
91
+ packages, services, and files.
92
+ .
93
+ Puppet's simple declarative specification language provides powerful
94
+ classing abilities for drawing out the similarities between hosts while
95
+ allowing them to be as specific as necessary, and it handles dependency
96
+ and prerequisite relationships between objects clearly and explicitly.
97
+
98
+ Package: puppetmaster-passenger
99
+ Architecture: all
100
+ Depends: ${misc:Depends}, ruby1.8, puppetmaster-common (= ${source:Version}), facter (>=1.5), facter (<< 2.0), lsb-base, libapache2-mod-passenger
101
+ Conflicts: puppetmaster (<< 2.6.1~rc2-1)
102
+ Replaces: puppetmaster (<< 2.6.1~rc2-1)
103
+ Description: Centralised configuration management - master setup to run under mod passenger
104
+ This package provides a puppetmaster running under mod passenger.
105
+ This configuration offers better performance and scalability.
106
+ .
107
+ Puppet lets you centrally manage every important aspect of your system
108
+ using a cross-platform specification language that manages all the
109
+ separate elements normally aggregated in different files, like users,
110
+ cron jobs, and hosts, along with obviously discrete elements like
111
+ packages, services, and files.
112
+ .
113
+ Puppet's simple declarative specification language provides powerful
114
+ classing abilities for drawing out the similarities between hosts while
115
+ allowing them to be as specific as necessary, and it handles dependency
116
+ and prerequisite relationships between objects clearly and explicitly.
117
+ .
118
+
119
+ Package: vim-puppet
120
+ Architecture: all
121
+ Depends: ${misc:Depends}
122
+ Recommends: vim-addon-manager
123
+ Conflicts: puppet (<< ${source:Version})
124
+ Description: syntax highlighting for puppet manifests in vim
125
+ The vim-puppet package provides filetype detection and syntax highlighting for
126
+ puppet manifests (files ending with ".pp").
127
+
128
+ Package: puppet-el
129
+ Architecture: all
130
+ Depends: ${misc:Depends}, emacsen-common
131
+ Conflicts: puppet (<< ${source:Version})
132
+ Description: syntax highlighting for puppet manifests in emacs
133
+ The puppet-el package provides syntax highlighting for puppet manifests
134
+
135
+ Package: puppet-testsuite
136
+ Architecture: all
137
+ Depends: ${misc:Depends}, ruby1.8, puppet-common (= ${source:Version}), facter (>= 1.5), facter (<< 2.0), lsb-base, rails (>= 1.2.3-2), rdoc, libldap-ruby1.8, mongrel, librspec-ruby, git-core, libmocha-ruby1.8
138
+ Recommends: cron
139
+ Suggests: ruby
140
+ Description: Centralized configuration management - test suite
141
+ This package provides all the tests from the upstream puppet source code.
142
+ The tests are used for improving the QA of the puppet package.
@@ -0,0 +1,361 @@
1
+ Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
2
+ Name: Puppet
3
+ Maintainer:
4
+ Michael Stahnke <stahnma@puppetlabs.com>,
5
+ Andrew Pollock <apollock@debian.org>,
6
+ Micah Anderson <micah@debian.org>,
7
+ Nigel Kersten <nigel@explanatorygap.net>,
8
+ Stig Sandbeck Mathisen <ssm@debian.org>
9
+ Source: git://github.com/puppetlabs/puppet.git,
10
+ http://puppetlabs.com/trac/puppet/wiki/DownloadingPuppet
11
+
12
+ Copyright: 2005-2011 Puppet Labs, LLC
13
+ License: Apache 2.0
14
+
15
+ Files: debian/*
16
+ Copyright:
17
+ Andrew Pollock <apollock@debian.org>,
18
+ Jamie Wilkinson <jaq@debian.org>,
19
+ Matthew Palmer <mpalmer@debian.org>,
20
+ Micah Anderson <micah@debian.org>,
21
+ Nigel Kersten <nigel@explanatorygap.net>,
22
+ Stig Sandbeck Mathisen <ssm@debian.org>,
23
+ Thom May <thom@debian.org>
24
+ License: GPL-2, ASL 2.0
25
+
26
+ Files: install.rb
27
+ Copyright: Austin Ziegler <ruby-install@halostatue.ca>
28
+ License: GPL-2+
29
+
30
+ Files: conf/gentoo/init.d/puppet*
31
+ Copyright: Gentoo Foundation
32
+ License: GPL-2
33
+
34
+ Files: lib/puppet/util/rdoc/generators/template/puppet/puppet.rb
35
+ Copyright: The FaerieMUD Consortium.
36
+ License: CC-BY-1.0
37
+ This work is licensed under the Creative Commons Attribution License. To view
38
+ a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or
39
+ send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California
40
+ 94305, USA.
41
+
42
+ Files: conf/osx/createpackage.sh
43
+ Copyright: Google Inc.
44
+ License: Apache
45
+ Licensed under the Apache License, Version 2.0 (the "License");
46
+ you may not use this file except in compliance with the License.
47
+ You may obtain a copy of the License at
48
+ .
49
+ http://www.apache.org/licenses/LICENSE-2.0
50
+ .
51
+ Unless required by applicable law or agreed to in writing, software
52
+ distributed under the License is distributed on an "AS IS" BASIS,
53
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
54
+ See the License for the specific language governing permissions and
55
+ limitations under the License
56
+ .
57
+ On Debian systems, the full text of the Apache License can be found at
58
+ "/usr/share/common-licenses/Apache-2.0"
59
+
60
+ Files: lib/puppet/external/event-loop/*
61
+ Copyright: Daniel Brockman
62
+ License: GPL-2+
63
+
64
+ Files: lib/puppet/external/nagios/parser.rb
65
+ Copyright: Minero Aoki
66
+ License: other
67
+ This program is free software.
68
+ You can distribute/modify this program under the same terms of ruby.
69
+ .
70
+ As a special exception, when this code is copied by Racc
71
+ into a Racc output file, you may use that output file
72
+ without restriction.
73
+
74
+ Files: lib/puppet/network/http_server/mongrel.rb
75
+ Copyright: Manuel Holtgrewe, Luke Kanies
76
+ License: MIT
77
+ Permission is hereby granted, free of charge, to any person obtaining
78
+ a copy of this software and associated documentation files (the
79
+ "Software"), to deal in the Software without restriction, including
80
+ without limitation the rights to use, copy, modify, merge, publish,
81
+ distribute, sublicense, and/or sell copies of the Software, and to
82
+ permit persons to whom the Software is furnished to do so, subject to
83
+ the following conditions:
84
+ .
85
+ The above copyright notice and this permission notice shall be
86
+ included in all copies or substantial portions of the Software.
87
+ .
88
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
89
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
90
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
91
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
92
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
93
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
94
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
95
+ SOFTWARE.
96
+
97
+ Files: lib/puppet/provider/augeas/augeas.rb, lib/puppet/type/augeas.rb
98
+ Copyright: Red Hat Inc.
99
+ License: GPL-2+
100
+
101
+ Files: lib/puppet/provider/mcx/mcxcontent.rb
102
+ Copyright: Jeff McCune <jeff@northstarlabs.net>
103
+ License: GPL-2+
104
+
105
+ Files: lib/puppet/type/mcx.rb, spec/unit/type/mcx.rb
106
+ Copyright: Jeffrey J McCune.
107
+ License: GPL-2+
108
+
109
+ Files: lib/puppet/provider/nameservice/directoryservice.rb
110
+ Copyright: Jeff McCune
111
+ License: GPL-2
112
+
113
+ Files: lib/puppet/provider/package/pkgdmg.rb
114
+ Copyright: Jeff McCune Jeff McCune <jeff@northstarlabs.net>
115
+ License: GPL-2
116
+
117
+ Files: test/ral/providers/service/debian.rb
118
+ Copyright: David Schmitt
119
+ License: missing
120
+
121
+ Files: examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
122
+ Copyright: David Schmitt <david@schmitt.edv-bus.at>
123
+ License: BSD
124
+ Redistribution and use in source and binary forms, with or without
125
+ modification, are permitted provided that the following conditions
126
+ are met:
127
+ 1. Redistributions of source code must retain the above copyright
128
+ notice, this list of conditions and the following disclaimer.
129
+ 2. Redistributions in binary form must reproduce the above copyright
130
+ notice, this list of conditions and the following disclaimer in the
131
+ documentation and/or other materials provided with the distribution.
132
+ 3. Neither the name of the Author nor the names of its contributors
133
+ may be used to endorse or promote products derived from this software
134
+ without specific prior written permission.
135
+ .
136
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
137
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
138
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
139
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
140
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
141
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
142
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
143
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
144
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
145
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
146
+ SUCH DAMAGE.
147
+
148
+ License: GPL-2
149
+ This program is free software; you can redistribute it and/or
150
+ modify it under the terms of the GNU General Public License
151
+ as published by the Free Software Foundation (version 2 of the License)
152
+ .
153
+ This program is distributed in the hope that it will be useful,
154
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
155
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
156
+ GNU General Public License for more details.
157
+ .
158
+ You should have received a copy of the GNU General Public License
159
+ along with this program; if not, write to the Free Software
160
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston MA 02110-1301 USA
161
+ .
162
+ On Debian systems, the full text of the GNU General Public
163
+ License version 2 can be found in the file
164
+ "/usr/share/common-licenses/GPL-2".
165
+
166
+ License: GPL-2+
167
+ This program is free software; you can redistribute it
168
+ and/or modify it under the terms of the GNU General Public
169
+ License as published by the Free Software Foundation;
170
+ either version 2 of the License, or (at your option) any
171
+ later version.
172
+ .
173
+ This file is distributed in the hope that it will be useful,
174
+ but WITHOUT ANY WARRANTY; without even the implied warranty
175
+ of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
176
+ See the GNU General Public License for more details.
177
+ .
178
+ You should have received a copy of the GNU General Public
179
+ License along with this program; if not, write to the Free
180
+ Software Foundation, 51 Franklin Street, Fifth Floor,
181
+ Boston, MA 02110-1301, USA.
182
+ .
183
+ On Debian systems, the full text of the GNU General Public
184
+ License version 2 can be found in the file
185
+ "/usr/share/common-licenses/GPL-2".
186
+
187
+ License: CC-BY-1.0
188
+ THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
189
+ COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
190
+ COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
191
+ AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.
192
+ .
193
+ BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE
194
+ BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS
195
+ CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
196
+ CONDITIONS.
197
+ .
198
+ 1. Definitions
199
+ .
200
+ "Collective Work" means a work, such as a periodical issue, anthology or
201
+ encyclopedia, in which the Work in its entirety in unmodified form, along with
202
+ a number of other contributions, constituting separate and independent works in
203
+ themselves, are assembled into a collective whole. A work that constitutes a
204
+ Collective Work will not be considered a Derivative Work (as defined below) for
205
+ the purposes of this License. "Derivative Work" means a work based upon the
206
+ Work or upon the Work and other pre-existing works, such as a translation,
207
+ musical arrangement, dramatization, fictionalization, motion picture version,
208
+ sound recording, art reproduction, abridgment, condensation, or any other form
209
+ in which the Work may be recast, transformed, or adapted, except that a work
210
+ that constitutes a Collective Work will not be considered a Derivative Work for
211
+ the purpose of this License.
212
+ .
213
+ "Licensor" means the individual or entity that offers the Work under the terms
214
+ of this License. "Original Author" means the individual or entity who created
215
+ the Work.
216
+ .
217
+ "Work" means the copyrightable work of authorship offered under the terms of
218
+ this License. "You" means an individual or entity exercising rights under this
219
+ License who has not previously violated the terms of this License with respect
220
+ to the Work, or who has received express permission from the Licensor to
221
+ exercise rights under this License despite a previous violation.
222
+ .
223
+ 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or
224
+ restrict any rights arising from fair use, first sale or other limitations on
225
+ the exclusive rights of the copyright owner under copyright law or other
226
+ applicable laws.
227
+ .
228
+ 3. License Grant. Subject to the terms and conditions of this License, Licensor
229
+ hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the
230
+ duration of the applicable copyright) license to exercise the rights in the
231
+ Work as stated below:
232
+ .
233
+ a. to reproduce the Work, to incorporate the Work into one or more Collective
234
+ Works, and to reproduce the Work as incorporated in the Collective Works;
235
+ .
236
+ b. to create and reproduce Derivative Works;
237
+ .
238
+ c. to distribute copies or phonorecords of, display publicly, perform publicly,
239
+ and perform publicly by means of a digital audio transmission the Work
240
+ including as incorporated in Collective Works;
241
+ .
242
+ d. to distribute copies or phonorecords of, display publicly, perform publicly,
243
+ and perform publicly by means of a digital audio transmission Derivative Works;
244
+ .
245
+ The above rights may be exercised in all media and formats whether now known or
246
+ hereafter devised. The above rights include the right to make such
247
+ modifications as are technically necessary to exercise the rights in other
248
+ media and formats. All rights not expressly granted by Licensor are hereby
249
+ reserved.
250
+ .
251
+ 4. Restrictions.
252
+ .
253
+ The license granted in Section 3 above is expressly made subject to and limited
254
+ by the following restrictions:
255
+ .
256
+ a. You may distribute, publicly display, publicly perform, or publicly
257
+ digitally perform the Work only under the terms of this License, and You must
258
+ include a copy of, or the Uniform Resource Identifier for, this License with
259
+ every copy or phonorecord of the Work You distribute, publicly display,
260
+ publicly perform, or publicly digitally perform. You may not offer or impose
261
+ any terms on the Work that alter or restrict the terms of this License or the
262
+ recipients' exercise of the rights granted hereunder. You may not sublicense
263
+ the Work. You must keep intact all notices that refer to this License and to
264
+ the disclaimer of warranties. You may not distribute, publicly display,
265
+ publicly perform, or publicly digitally perform the Work with any technological
266
+ measures that control access or use of the Work in a manner inconsistent with
267
+ the terms of this License Agreement. The above applies to the Work as
268
+ incorporated in a Collective Work, but this does not require the Collective
269
+ Work apart from the Work itself to be made subject to the terms of this
270
+ License. If You create a Collective Work, upon notice from any Licensor You
271
+ must, to the extent practicable, remove from the Collective Work any reference
272
+ to such Licensor or the Original Author, as requested. If You create a
273
+ Derivative Work, upon notice from any Licensor You must, to the extent
274
+ practicable, remove from the Derivative Work any reference to such Licensor or
275
+ the Original Author, as requested.
276
+ .
277
+ b. If you distribute, publicly display, publicly perform, or publicly digitally
278
+ perform the Work or any Derivative Works or Collective Works, You must keep
279
+ intact all copyright notices for the Work and give the Original Author credit
280
+ reasonable to the medium or means You are utilizing by conveying the name (or
281
+ pseudonym if applicable) of the Original Author if supplied; the title of the
282
+ Work if supplied; in the case of a Derivative Work, a credit identifying the
283
+ use of the Work in the Derivative Work (e.g., "French translation of the Work
284
+ by Original Author," or "Screenplay based on original Work by Original
285
+ Author"). Such credit may be implemented in any reasonable manner; provided,
286
+ however, that in the case of a Derivative Work or Collective Work, at a minimum
287
+ such credit will appear where any other comparable authorship credit appears
288
+ and in a manner at least as prominent as such other comparable authorship
289
+ credit.
290
+ .
291
+ 5. Representations, Warranties and Disclaimer
292
+ .
293
+ a. By offering the Work for public release under this License, Licensor
294
+ represents and warrants that, to the best of Licensor's knowledge after
295
+ reasonable inquiry:
296
+ .
297
+ i. Licensor has secured all rights in the Work necessary to grant the license
298
+ rights hereunder and to permit the lawful exercise of the rights granted
299
+ hereunder without You having any obligation to pay any royalties, compulsory
300
+ license fees, residuals or any other payments;
301
+ .
302
+ ii. The Work does not infringe the copyright, trademark, publicity rights, common
303
+ law rights or any other right of any third party or constitute defamation,
304
+ invasion of privacy or other tortious injury to any third party.
305
+ .
306
+ b. EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR
307
+ REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT
308
+ WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
309
+ LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK.
310
+ .
311
+ 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
312
+ AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM
313
+ BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO
314
+ YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR
315
+ EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF
316
+ LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
317
+ .
318
+ 7. Termination
319
+ .
320
+ a. This License and the rights granted hereunder will terminate automatically
321
+ upon any breach by You of the terms of this License. Individuals or entities
322
+ who have received Derivative Works or Collective Works from You under this
323
+ License, however, will not have their licenses terminated provided such
324
+ individuals or entities remain in full compliance with those licenses. Sections
325
+ 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
326
+ .
327
+ b. Subject to the above terms and conditions, the license granted here is
328
+ perpetual (for the duration of the applicable copyright in the Work).
329
+ Notwithstanding the above, Licensor reserves the right to release the Work
330
+ under different license terms or to stop distributing the Work at any time;
331
+ provided, however that any such election will not serve to withdraw this
332
+ License (or any other license that has been, or is required to be, granted
333
+ under the terms of this License), and this License will continue in full force
334
+ and effect unless terminated as stated above.
335
+ .
336
+ 8. Miscellaneous
337
+ .
338
+ Each time You distribute or publicly digitally perform the Work or a Collective
339
+ Work, the Licensor offers to the recipient a license to the Work on the same
340
+ terms and conditions as the license granted to You under this License.
341
+ .
342
+ Each time You distribute or publicly digitally perform a Derivative Work,
343
+ Licensor offers to the recipient a license to the original Work on the same
344
+ terms and conditions as the license granted to You under this License.
345
+ .
346
+ If any provision of this License is invalid or unenforceable under applicable
347
+ law, it shall not affect the validity or enforceability of the remainder of the
348
+ terms of this License, and without further action by the parties to this
349
+ agreement, such provision shall be reformed to the minimum extent necessary to
350
+ make such provision valid and enforceable.
351
+ .
352
+ No term or provision of this License shall be deemed waived and no breach
353
+ consented to unless such waiver or consent shall be in writing and signed by
354
+ the party to be charged with such waiver or consent.
355
+ .
356
+ This License constitutes the entire agreement between the parties with respect
357
+ to the Work licensed here. There are no understandings, agreements or
358
+ representations with respect to the Work not specified here. Licensor shall not
359
+ be bound by any additional provisions that may appear in any communication from
360
+ You. This License may not be modified without the mutual written agreement of
361
+ the Licensor and You.