puppet 0.25.4 → 0.25.5

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 (169) hide show
  1. data/CHANGELOG +679 -23
  2. data/LICENSE +2 -2
  3. data/README +2 -2
  4. data/README.queueing +1 -1
  5. data/README.rst +2 -2
  6. data/Rakefile +4 -2
  7. data/bin/filebucket +2 -2
  8. data/bin/pi +1 -1
  9. data/bin/puppet +2 -2
  10. data/bin/puppetca +2 -2
  11. data/bin/puppetd +5 -4
  12. data/bin/puppetdoc +4 -4
  13. data/bin/puppetmasterd +2 -2
  14. data/bin/puppetqd +2 -2
  15. data/bin/puppetrun +2 -2
  16. data/bin/ralsh +2 -2
  17. data/conf/epm.list +2 -2
  18. data/conf/gentoo/puppet/puppet.conf +0 -4
  19. data/conf/osx/PackageInfo.plist +1 -1
  20. data/conf/redhat/logrotate +1 -0
  21. data/conf/redhat/puppet.conf +0 -4
  22. data/conf/redhat/puppet.spec +16 -10
  23. data/conf/solaris/pkginfo +2 -2
  24. data/conf/solaris/smf/puppetd.xml +3 -3
  25. data/conf/solaris/smf/puppetmasterd.xml +3 -3
  26. data/conf/solaris/smf/svc-puppetd +1 -1
  27. data/conf/solaris/smf/svc-puppetmasterd +1 -1
  28. data/conf/suse/puppet.spec +16 -14
  29. data/conf/suse/puppet.suse.patch +16 -0
  30. data/examples/etc/puppet/fileserver.conf +5 -5
  31. data/examples/modules/sample-module/README.txt +3 -3
  32. data/examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb +1 -1
  33. data/ext/extlookup.rb +1 -1
  34. data/ext/nagios/check_puppet.rb +1 -1
  35. data/ext/nagios/naggen +2 -2
  36. data/ext/puppet-test +2 -2
  37. data/ext/puppetlast +1 -1
  38. data/ext/puppetstoredconfigclean.rb +1 -1
  39. data/ext/regexp_nodes/regexp_nodes.rb +4 -4
  40. data/ext/vim/syntax/puppet.vim +5 -3
  41. data/install.rb +11 -9
  42. data/lib/puppet.rb +1 -1
  43. data/lib/puppet/application/puppetd.rb +5 -4
  44. data/lib/puppet/configurer.rb +38 -31
  45. data/lib/puppet/defaults.rb +18 -13
  46. data/lib/puppet/file_serving/fileset.rb +2 -2
  47. data/lib/puppet/file_serving/terminus_helper.rb +1 -0
  48. data/lib/puppet/indirector/indirection.rb +20 -13
  49. data/lib/puppet/network/authstore.rb +3 -3
  50. data/lib/puppet/network/format_handler.rb +1 -1
  51. data/lib/puppet/network/handler/fileserver.rb +2 -2
  52. data/lib/puppet/network/handler/master.rb +1 -1
  53. data/lib/puppet/network/http_pool.rb +0 -2
  54. data/lib/puppet/network/http_server/webrick.rb +1 -1
  55. data/lib/puppet/parser/ast/casestatement.rb +4 -4
  56. data/lib/puppet/parser/ast/ifstatement.rb +2 -1
  57. data/lib/puppet/parser/ast/leaf.rb +1 -0
  58. data/lib/puppet/parser/ast/selector.rb +2 -3
  59. data/lib/puppet/parser/functions/generate.rb +3 -5
  60. data/lib/puppet/parser/functions/require.rb +8 -1
  61. data/lib/puppet/parser/functions/template.rb +1 -1
  62. data/lib/puppet/parser/lexer.rb +1 -7
  63. data/lib/puppet/parser/resource.rb +10 -4
  64. data/lib/puppet/parser/scope.rb +61 -9
  65. data/lib/puppet/provider/augeas/augeas.rb +23 -7
  66. data/lib/puppet/provider/macauthorization/macauthorization.rb +1 -1
  67. data/lib/puppet/provider/maillist/mailman.rb +2 -2
  68. data/lib/puppet/provider/package/portage.rb +2 -2
  69. data/lib/puppet/provider/service/debian.rb +2 -2
  70. data/lib/puppet/provider/service/redhat.rb +1 -1
  71. data/lib/puppet/provider/service/smf.rb +4 -1
  72. data/lib/puppet/provider/ssh_authorized_key/parsed.rb +9 -29
  73. data/lib/puppet/provider/user/user_role_add.rb +1 -1
  74. data/lib/puppet/reference/configuration.rb +1 -1
  75. data/lib/puppet/reference/providers.rb +1 -1
  76. data/lib/puppet/reports/tagmail.rb +1 -0
  77. data/lib/puppet/resource/catalog.rb +1 -8
  78. data/lib/puppet/simple_graph.rb +37 -12
  79. data/lib/puppet/ssl/certificate.rb +2 -3
  80. data/lib/puppet/ssl/certificate_authority.rb +1 -1
  81. data/lib/puppet/ssl/host.rb +19 -12
  82. data/lib/puppet/sslcertificates/ca.rb +5 -6
  83. data/lib/puppet/transaction.rb +11 -15
  84. data/lib/puppet/type/augeas.rb +2 -1
  85. data/lib/puppet/type/exec.rb +1 -1
  86. data/lib/puppet/type/file.rb +9 -2
  87. data/lib/puppet/type/file/checksum.rb +2 -1
  88. data/lib/puppet/type/file/source.rb +4 -4
  89. data/lib/puppet/type/maillist.rb +10 -0
  90. data/lib/puppet/type/mount.rb +5 -3
  91. data/lib/puppet/type/tidy.rb +36 -30
  92. data/lib/puppet/util/autoload.rb +2 -2
  93. data/lib/puppet/util/checksums.rb +5 -0
  94. data/lib/puppet/util/monkey_patches.rb +38 -0
  95. data/lib/puppet/util/nagios_maker.rb +1 -1
  96. data/lib/puppet/util/settings.rb +14 -4
  97. data/lib/puppet/util/suidmanager.rb +26 -2
  98. data/lib/puppet/util/zaml.rb +318 -0
  99. data/man/{man8/puppet.conf.8 → man5/puppet.conf.5} +594 -899
  100. data/man/man8/filebucket.8 +31 -45
  101. data/man/man8/pi.8 +16 -22
  102. data/man/man8/puppet.8 +26 -36
  103. data/man/man8/puppetca.8 +38 -51
  104. data/man/man8/puppetd.8 +48 -64
  105. data/man/man8/puppetdoc.8 +37 -48
  106. data/man/man8/puppetmasterd.8 +24 -32
  107. data/man/man8/puppetqd.8 +22 -27
  108. data/man/man8/puppetrun.8 +46 -58
  109. data/man/man8/ralsh.8 +43 -48
  110. data/spec/integration/bin/puppetmasterd.rb +20 -9
  111. data/spec/integration/defaults.rb +4 -0
  112. data/spec/integration/indirector/certificate/rest.rb +0 -1
  113. data/spec/integration/indirector/certificate_request/rest.rb +0 -1
  114. data/spec/integration/indirector/certificate_revocation_list/rest.rb +0 -1
  115. data/spec/integration/indirector/report/rest.rb +0 -1
  116. data/spec/integration/indirector/rest.rb +0 -1
  117. data/spec/integration/parser/functions/require.rb +18 -1
  118. data/spec/unit/application/filebucket.rb +2 -2
  119. data/spec/unit/application/puppetd.rb +4 -5
  120. data/spec/unit/configurer.rb +46 -8
  121. data/spec/unit/file_serving/fileset.rb +6 -0
  122. data/spec/unit/file_serving/terminus_helper.rb +10 -0
  123. data/spec/unit/indirector/indirection.rb +17 -28
  124. data/spec/unit/network/format_handler.rb +3 -2
  125. data/spec/unit/network/http_pool.rb +9 -17
  126. data/spec/unit/parser/ast/casestatement.rb +4 -12
  127. data/spec/unit/parser/ast/ifstatement.rb +2 -1
  128. data/spec/unit/parser/ast/leaf.rb +15 -2
  129. data/spec/unit/parser/ast/selector.rb +4 -12
  130. data/spec/unit/parser/functions/generate.rb +41 -0
  131. data/spec/unit/parser/functions/require.rb +23 -2
  132. data/spec/unit/parser/resource.rb +18 -0
  133. data/spec/unit/parser/scope.rb +94 -3
  134. data/spec/unit/provider/augeas/augeas.rb +27 -3
  135. data/spec/unit/provider/ssh_authorized_key/parsed.rb +30 -19
  136. data/spec/unit/resource/catalog.rb +16 -39
  137. data/spec/unit/simple_graph.rb +14 -0
  138. data/spec/unit/ssl/host.rb +55 -17
  139. data/spec/unit/type/file.rb +43 -11
  140. data/spec/unit/type/file/checksum.rb +28 -0
  141. data/spec/unit/type/tidy.rb +30 -1
  142. data/spec/unit/util/autoload.rb +2 -1
  143. data/spec/unit/util/checksums.rb +7 -1
  144. data/spec/unit/util/settings.rb +39 -2
  145. data/spec/unit/util/zaml.rb +38 -0
  146. data/tasks/rake/changelog.rake +1 -1
  147. data/tasks/rake/gem.rake +3 -3
  148. data/tasks/rake/git_workflow.rake +1 -1
  149. data/tasks/rake/sign.rake +1 -1
  150. data/tasks/rake/yard.rake +11 -0
  151. data/test/certmgr/certmgr.rb +1 -1
  152. data/test/data/providers/ssh_authorized_key/parsed/authorized_keys +1 -1
  153. data/test/lib/puppettest/support/utils.rb +2 -1
  154. data/test/network/handler/ca.rb +4 -4
  155. data/test/network/handler/fileserver.rb +15 -9
  156. data/test/other/transactions.rb +1 -6
  157. data/test/puppet/tc_suidmanager.rb +7 -2
  158. data/test/ral/providers/host/parsed.rb +6 -6
  159. data/test/ral/providers/package.rb +4 -0
  160. data/test/ral/providers/sshkey/parsed.rb +5 -5
  161. data/test/ral/type/file.rb +0 -21
  162. data/test/ral/type/host.rb +4 -4
  163. data/test/ral/type/resources.rb +0 -78
  164. data/test/ral/type/sshkey.rb +2 -2
  165. data/test/test +1 -1
  166. data/test/util/settings.rb +6 -6
  167. metadata +1065 -1050
  168. data/test/executables/puppetmodule.rb +0 -55
  169. data/test/ral/providers/service/debian.rb +0 -58
data/CHANGELOG CHANGED
@@ -1,5 +1,104 @@
1
+ 0.25.5
2
+ ======
3
+ d88b357 Fixes incorrect line in partial CRL fix
4
+ dec84e5 Fixed documentation issues exposed in #3772
5
+
6
+ 0.25.5rc3
7
+ =========
8
+ 4daf8c3 Updated CHANGELOG for 0.25.5rc3
9
+ 9214400 WIP - trying to fix #3460
10
+ 9d3e98b Minimal footprint fix for #3751 (serialization 0.25.5 <-> 0.24.8)
11
+ d481340 Updated Template documentation link
12
+ 5a1a45c Update Red Hat spec file for 0.25.5
13
+
14
+ 0.25.5rc2
15
+ =========
16
+ 2257605 Updated CHANGELOG for 0.25.5rc2
17
+ 5258a0a Fixing #3533 - Removing all transaction cleanup
18
+ bcde541 Fix for #2910 -- Tidy/matches is too tricky to use
19
+ 5abe571 Bug #3451: Don't leak the terminus class setting from Puppet::Resource::Catalog's spec
20
+ ebd924c Fix to the fix for #3295
21
+ ce233aa Write ssh_authorized_keys as user
22
+ 6739bab Fix for #3558 -- source file reading speedup
23
+ b0e3c61 Fix for #3556 Plussignment value melding
24
+ 8a30495 Fixed #3655 - Puppet doesn't find installed packages with portage provider
25
+ e4130af Fixed #3672 - Error message on duplicate fileserver mounts incorrect
26
+ 1275a47 conf/redhat: Add notifempty to logrotate config
27
+ 134204d Fixed stored configuration documentation
28
+ 1aa98a6 Fixes #3653 - Changed default factpath value to better reflect plugins in modules
29
+ 44f6d64 Partial fix to #2837 - changed warning message to debug
30
+ 3a1b178 Fix #3555 - fix state of purged lists
31
+ f6046ab Fix for #3577 -- to_yaml parameter in 0.25.5rc1
32
+ f351e2d Renamed all references to Reductive Labs to Puppet Labs
33
+ cf7e696 Updated Rake tasks to no longer load puppet.rb
34
+ b93924e Fix #3540 - name methods correctly
35
+ 9bc2f28 Fixes #3295 - generate() now sets the working directory to the directory containing the specified command.
36
+ 3ee6834 Added YARD task
37
+ 99818ef Update man pages and partial doc fix to #3491
38
+ f988af3 Fixed #3532 - Typo in lib/puppet/ssl/host.rb
39
+ f0e12e5 Fix #3496 - suppress transaction debug message
40
+
41
+ 0.25.5rc1
42
+ =========
43
+ 0eea2f5 Updated version and CHANGELOG to 0.25.5rc1
44
+ 57ae381 Modify SuSE spec file for 0.25.x and correct shebang lines for puppetd/puppetmasterd
45
+ d90ec79 Fixes #3460 - Makes Puppet FHS compliant by moving /var/puppet to /var/lib/puppet
46
+ ae0b0bf Fix for #3101 (bug in MRI 1.8.7)
47
+ 9db066b Fixes #3419. OS X 10.6 Ruby doesn't set supplementary groups
48
+ 306d082 Revert the guts of #2890
49
+ 4eea77a Fail gracefully on packages that don't have the HOMEPAGE variable set (e.g. dev-lang/php).
50
+ f5b8494 Fixed #3443 - Typo in mount type
51
+ b0ef2c6 Fixes #3135 - darwin doesn't support 'mount -o remount'
52
+ 7018cf5 Adding :catalog_terminus setting
53
+ 978ab8a fixing obsolete comment in puppetd
54
+ 6d13d0d Adding support for only using cached catalogs
55
+ bc28715 Refactoring Configurer to enable the next feature
56
+ ba43d7b Fix for #3366 - --tags '' treated as boolean 'true'
57
+ 5ab5e8a Supressing warnings (not really failures) in test/unit
58
+ e4df0b0 Fix test using wrong Puppet util filesetting group
59
+ eeb3d74 Mock user in SUIDManager tests
60
+ 9ea27db Removing resources generate tests
61
+ 218e3e9 Removing old test for service/debian provider
62
+ 1556938 Replace test/unit file write test with spec
63
+ 2defc00 Fix for #3424 and tests to prove it.
64
+ 44798b9 Fixed changelog Rake task
65
+ 5d10f65 Fix #3155 - prevent error when using two matching regex in cascade
66
+ fbedb99 Fixing #3148 Settings#without_noop when run with no noop setting
67
+ 389c77b Another trivial follow-up fix for #2604: invalid path to zaml.rb
68
+ 56b5753 Fix inefficient SimpleGraph#matching_edge
69
+ 4b2b9eb Fix #3229 - use original value in case/selector regex matching
70
+ 19863c0 Fix #2929 - Allow checksum to be "none"
71
+ fd76142 Fixed puppetlast typo
72
+ 3b4e782 Follow up for #2604, debug msg left behind.
73
+ e44430b Fix for #2604 Pure Ruby yaml generation
74
+ 74cd55f Fixes #3113 - When importing a manifest puppet needs to chill
75
+ 7ec50a7 Fixes #3387 - Handle path elements with ticks and spaces
76
+ d561a98 Fix for #3412 install.rb should not put "." first in the tmp_dirs
77
+ 751df45 Fix #3186 - require function set relationship only on the last class
78
+ a1d216c Fixed the return types were valid, and removed the copy paste error with the exception logic
79
+ d532e6d Fixing #3185 Rakefile is loading puppet.rb twice
80
+ 5aa596c Fix #3150 - require function doesn't like ::class syntax
81
+ 3457b87 Added time module to tagmail report
82
+ 71653a7 Fixed #3162 - tidy does not remove empty files when "size => 0" is set
83
+ efd0f76 Fixed #3128 - Updated man pages and moved puppet.conf.8 to puppet.conf.5
84
+ ad4f94a Add version number to puppetlast display.
85
+ 0533cea Forgot fakedata called in spec
86
+ 6416f91 Fixing #2669 puppetmasterd integration has leaky state
87
+ 8a3a205 Fix for #2327, check the return types from augeas and fail where appropriate
88
+ 2ae7516 2047: Add a not_include into match
89
+ 55f6239 Minor unit test fixes
90
+ b7b7a1c vim: Improve function matching when functions contain ')'
91
+ b3c363c vim: puppetDefArguments is contained by puppetDefine
92
+ f9e05a8 Fix for #3094 (libdir should take ":" delimited path)
93
+ b473264 Fix #1842 Net::HTTP#enable_post_connection_check doesn't work anymore
94
+ 9419c2b Fix for #3035 (redhat services use init for source)
95
+ 10becce Fix for #3077 (unit tests broken in 0.25.1-->0.25.4)
96
+ 49a7185 Fix for #3085 (user_role_add pulls from same source as useradd)
97
+ 1f086c2 Fix for #3114 (ruby's arbitrary limit on process groups too low)
98
+
1
99
  0.25.4
2
100
  ======
101
+ c5eef04 Updated CHANGELOG for 0.25.4
3
102
  0025e13 Partial reversion of patch for #3088 to fix #3104 (Exception misreported)
4
103
  bfc9e45 Updated CHANGELOG for 0.25.4rc3
5
104
 
@@ -10,10 +109,6 @@ a91c476 Fix for #3088 (catching Exception also traps SystemExit)
10
109
  75634b7 Fix for #3093 (also need to be able to call pkgget_with_cat on class)
11
110
  94e269c Uncommeniting the fix for #3001
12
111
  9636b93 Updated CHANGELOG for 0.24.5rc2
13
- d4319a5 Minimal fix for #3001 (failing to fetch metadata on dangling symlink)
14
- cdcbdc7 Fixing #2914 - pre/post hooks now work for transactions
15
- 67216aa Fix for #3075 (sshkey host_aliases ignored)
16
- e4462c0 Updated version and CHANGELOG for 0.25.4
17
112
 
18
113
  0.25.4rc2
19
114
  =========
@@ -21,6 +116,9 @@ d4319a5 Minimal fix for #3001 (failing to fetch metadata on dangling symlink)
21
116
  cdcbdc7 Fixing #2914 - pre/post hooks now work for transactions
22
117
  67216aa Fix for #3075 (sshkey host_aliases ignored)
23
118
  e4462c0 Updated version and CHANGELOG for 0.25.4
119
+
120
+ 0.25.4rc1
121
+ =========
24
122
  441879f Revert "Fix #2845 Cron entries using "special" parameter lose their title when changed"
25
123
  f7e1435 Updated rake task to fix gem build issue
26
124
  49013f0 Updated version and CHANGELOG for 0.25.3
@@ -35,22 +133,6 @@ dd22b71 Replaced ugly gem creation task with slightly less ugly task
35
133
  d0efcc6 Added tasks directory to Rakefile and gem task file lists
36
134
  8a6d66e Added puppetpackages task description
37
135
  eada68a Updated CHANGELOG for 0.25.2
38
- 6111ba8 Fix for temporary file security whole
39
- e7d98cc Fix for #2999 (absent package handling on solaris)
40
- 87136b4 Fix typo in documentation: wheter vs. whether.
41
- cbc2ef0 Partial rollback of refinements to fix for #2994
42
- fd631b9 Do not close stdout or stderr in execute.
43
- f878fe8 Update Red Hat spec file for 0.25.2
44
- 4394c48 Updated CHANGELOG for 0.25.2rc3
45
- 13cbf04 ReFix 2675 ending slash in directory should get stripped off
46
- 5c6f07b Use a pipe instead of a temp file for command output.
47
- 7e64393 Additional fix for #2994 (followed symlinks do not have checksums)
48
- 7e2e12b Fix for #2995 (don't fail to load PSON when UTF-8 missing)
49
- c84186a Revert "Fix for #2731 (problem communicating with processes in SELinux)"
50
- 74d9693 Updated man pages for 0.25.2
51
- 7e2b1e9 Fix for #2995 (don't fail to load PSON when UTF-8 missing)
52
- d1ff4b3 Fix for #2994 (undefined method "_file" message)
53
- 4d81511 fix #2987 - check correct hash entry
54
136
 
55
137
  0.25.2
56
138
  ======
@@ -61,6 +143,9 @@ cbc2ef0 Partial rollback of refinements to fix for #2994
61
143
  fd631b9 Do not close stdout or stderr in execute.
62
144
  f878fe8 Update Red Hat spec file for 0.25.2
63
145
  4394c48 Updated CHANGELOG for 0.25.2rc3
146
+
147
+ 0.25.2rc3
148
+ =========
64
149
  13cbf04 ReFix 2675 ending slash in directory should get stripped off
65
150
  5c6f07b Use a pipe instead of a temp file for command output.
66
151
  7e64393 Additional fix for #2994 (followed symlinks do not have checksums)
@@ -70,6 +155,9 @@ c84186a Revert "Fix for #2731 (problem communicating with processes in SELinux)
70
155
  7e2b1e9 Fix for #2995 (don't fail to load PSON when UTF-8 missing)
71
156
  d1ff4b3 Fix for #2994 (undefined method "_file" message)
72
157
  4d81511 fix #2987 - check correct hash entry
158
+
159
+ 0.25.2rc2
160
+ =========
73
161
  682000b Updated CHANGELOG for 0.25.2rc2
74
162
  e4bb529 Fix for #2967 (RFC-1123 problem and regression on wildcarded domains)
75
163
  776be7c Updated CHANGELOG
@@ -1196,7 +1284,7 @@ d0bf26e Fixed install.rb typo
1196
1284
  2c7e189 Fixes incorrect detail variable in OS X version check, re-patches ralsh to work with Facter values and adds error check for missing password hash files.
1197
1285
  73a0757 Fix #1828 - Scope.number? wasn't strict enough and could produce wrong results
1198
1286
 
1199
- 0.24.7rc1
1287
+ 0.24.8rc1
1200
1288
  =========
1201
1289
  84d6637 Fixed #2000 - No default specified for checksum
1202
1290
  a3bb201 Fixing change printing when list properties are absent
@@ -1282,8 +1370,91 @@ b7ab54c Add methods to return hash instead of objects to params and tags
1282
1370
  b27fccd Fixed #1852 - Correct behaviour when no SELinux bindings
1283
1371
  7403330 Updated Red Hat spec file 0.24.7
1284
1372
 
1285
- 0.24.7
1286
- ======
1373
+ 0.24.7rc1
1374
+ =========
1375
+ 84d6637 Fixed #2000 - No default specified for checksum
1376
+ a3bb201 Fixing change printing when list properties are absent
1377
+ 67fc394 Fixed #2026 - Red Hat ignoring stop method
1378
+ cf64827 Bring in the documentation changes from the master branch
1379
+ 01bc88c Added a force option to ensure the change is always applied, and call augeas twice to reduce the chance that data is lost
1380
+ cedeb79 Backport the fix for #1835
1381
+ cf48ec0 First cut at the not running if augeas does not change any of the underlieing files
1382
+ 9d36b58 Bug 1948: Added patch by jab to support the correct ins syntax. Updated the test cases as well
1383
+ 61661b1 Fixing #1991 - ldap booleans get converted to booleans
1384
+ d5850dc Refactored a method: extracted about five other methods
1385
+ 1c7c8fe dbfix - fix typo and close another possible inconsistency
1386
+ c55ac3f Fix #2010 - add protection code for some storeconfig corruption
1387
+ a790ee3 Further fix to #1910
1388
+ 9577d3a Fixing #2013 - prefetching had a mismatch between type and title
1389
+ 719a8df Fixed to rake tests for reductivelabs build
1390
+ ac87600 Fixed report reference page
1391
+ 0c16426 Fixing broken 0.24.x tests in test/.
1392
+ 23066c1 Fixing every failing test I can find on the build server.
1393
+ ec56ddf This script fixes the most common issues with inconsistent storeconfigs database (including duplicate resources record, duplicate param_values records, dangling records...).
1394
+ c052ff8 Make puppetd --waitforcert option behave as documented:
1395
+ e2b4062 Adding a performance optimization to the FileCollection.
1396
+ fa6494b Using the FileCollection where appropriate.
1397
+ 373d505 Adding a FileCollection and a lookup module for it.
1398
+ 0e46786 Fixed #1963 - Failing to read /proc/mounts for selinux kills file downloads
1399
+ 4170238 Fixed #2025 - gentoo service provider handle only default init level
1400
+ 8c010e0 Fixed #1910 - updated logcheck
1401
+ 7504b04 Updated useradd.rb managehome confine to include other RH-like distributions
1402
+ f07d928 Use Puppet.debug instead of own debug flag
1403
+ 25a3f59 Fixing #558 - File checksums no longer refer to 'nosum'
1404
+ d758f45 Fixing #1871 once and for all - contents are never printed
1405
+ c0f4943 Minor fix to launchd tests
1406
+ 24d48e6 Fix #1972 - ActiveRecord fixes resulted in broken tests
1407
+ 446989b Fix spec test for launchd service provider to work with new service status method and add two new status tests.
1408
+ 3ef5849 Fixing a test I broke in commit:"897539e857b0da9145f15648b6aa2ef124ec1a19".
1409
+ 72bd378 Removing a no-longer-valid test.
1410
+ 682dd8b Fixing password validation to support symbols.
1411
+ 44f97aa Only backing up within parsedfile when managing files
1412
+ 04af7b4 Fixing a syntax error in the up2date provider
1413
+ 1070b3c Fixing a test broken by a log demotion
1414
+ ab84756 Cleaned up variable names to be more sane, clarified error messages and fixed incorrect use of 'value' variable rather than 'member'.
1415
+ 7f41857 Provide dscl -url output support for OS X 10.4 clients using the directoryservice provider.
1416
+ 0bc3c07 Fix launchd service provider so it is backwards compatible with OS X 10.4 as well
1417
+ 2561c8e Updated Augeas type code
1418
+ 7d72186 Removed site from Puppet VIM syntax
1419
+ 1bc7404 Fixed #1831 - Added sprintf function
1420
+ 336b645 Fixed #1830 - Added regsubst function
1421
+ 2a85551 Bug 1948: Add logic and testing for the command parsing logic
1422
+ 2218611 Updated up2date and service confines to add support for Oracle EL and VM
1423
+ 39a8b28 Fixing #1964 - Facts get loaded from plugins
1424
+ 7cf085c Adding tests for Puppet::Indirector::Facts::Facter.loadfacts
1425
+ 70ea39a Adding a post-processor for Nagios names.
1426
+ 4dfa034 Revert "Refixing #1420 - _naginator_name is only used for services"
1427
+ d5a193a Fixing #1541 - ParsedFile only backs up files once per transaction
1428
+ 53f15b9 Removing the apparently obsolete netinfo filetype.
1429
+ 4e89156 Migrated FileType tests to spec, and fleshed them out a bit.
1430
+ cc4d658 Bug #1948: Added patch by jab to support the correct ins syntax. Updated the test cases as well
1431
+ 5e35166 Fixing #961 - closing the http connection after every xmlrpc call
1432
+ af3f3ae Refactoring the XMLRPC::Client error-handling
1433
+ f0ac3ae Fixed #1959 - Added column protection for environment schema migration
1434
+ 319822a Fixing #1869 - autoloaded files should never leak exceptions
1435
+ 6b0c1b9 Fixing #1543 - Nagios parse errors no longer kill Puppet
1436
+ 7fd5c7e Moving the transaction specs to the right path
1437
+ efb5cc5 Refixing #1420 - _naginator_name is only used for services
1438
+ 32c2be9 Fixed #1884 - exported defines are collected by the exporting host
1439
+ 0e49159 Cleaning up the AST::Resource code a bit
1440
+ b22d148 Fix #1691 - Realize fails with array of Resource References
1441
+ 6331bfc Fix #1682 - Resource titles are not flattened as they should
1442
+ 7e036eb Fix #1922 - Functions squash all arguments into a single hash
1443
+ 535fa89 Fixed #1538 - Yumrepo sets permissions wrongly on files in /etc/yum.repos.d
1444
+ f7b04df Fixed #1936 - Added /* */ support to the vim file
1445
+ 671d73c Prefetching, and thus purging, Nagios resources now works *only* if you use the default configuration file locations.
1446
+ 063871f Adding some basic tests for the Naginator provider base class
1447
+ 897539e Removing a redundant instance prefect call.
1448
+ 012efe3 Fixing #1912 - gid still works with no 'should' value.
1449
+ a9f34af Fixing the Rakefile to use 'git format-patch'.
1450
+ db05c00 Fixing #1920 - user passwords no longer allow ':'
1451
+ aa219e7 Adding README.rst file
1452
+ 1d3f117 Added Reductive Labs build library
1453
+ f01882d Change the way the tags and params are handled in rails
1454
+ b7ab54c Add methods to return hash instead of objects to params and tags
1455
+ 5c64435 Rails serialization module to help serialize/unserialize some Puppet Objects
1456
+ b27fccd Fixed #1852 - Correct behaviour when no SELinux bindings
1457
+ 7403330 Updated Red Hat spec file 0.24.7
1287
1458
  8befc18 Updated to version 0.24.7
1288
1459
  cf19bd8 Not using a temporary file when locking files for writing.
1289
1460
  b966ea0 Modifying the corruption-checking test.
@@ -4572,3 +4743,488 @@ b532a30 adding things to the change log, and modifying the order of the steps
4572
4743
  584652c Disabling most documentation generation except for the API docs, and wrapping the StatusServer in the xmlrpc check
4573
4744
  0e0fdac Updated to version 0.9.3
4574
4745
 
4746
+ 0.9.3
4747
+ =====
4748
+ d4a9f3e Adding release tag
4749
+ e2e2fb3 some updates to the typegen stuff, even though i may still not use it
4750
+ 5302921 Fixing two reported bugs in cron jobs. Cron jobs correctly change when fields other than the command are updated, and they do not continually refresh when the command has trailing spaces
4751
+ 592c24d adding some comments
4752
+ f9f84bf removing "host" as a keyword; it was an alias for "node"
4753
+ 4eaf13a converting storage from Marshal to YAML
4754
+ 3c14db1 adding Util.lock, and switching storage to using it
4755
+ 5ce5b95 removing any direct references to /tmp in tests
4756
+ 84bf289 fixing files being put directly into tmp
4757
+ a03b03f removing ruby shebang at the top of all of the files
4758
+ 2a5bbd0 final updates for 0.9.2
4759
+ 58ef35d updates
4760
+ dd727ef removing marks
4761
+ 9f942b0 fixing tests to work from any CWD
4762
+ 58c0df1 fixing incredibly annoying bug where os x returns stupidly large uid when uid is below 0
4763
+ 42c077f updates from os x
4764
+ f815654 updates
4765
+ 5082132 adding cfengine module, which required passing the cfengine classes all the way through the stack to the scope
4766
+ c205bf6 fixing filesources so that the first found file is copied, and adding a test case
4767
+ 6960034 fixing puppet to default to using the console for output
4768
+ d5bd1bc Mostly fixing exec so it either captures stderr or runs as a user; Process.euid was not working correctly
4769
+ a4562bf Lots of refactoring, and added the capture_stderr method
4770
+ 42a9d9a Adding "isomorphic?" method to classes, and testing for isomorphism before throwing a conflict
4771
+ 300a163 Further progress towards the next release. Lots of small bugs fixed, the paths look much better now, and Transportable is much cleaner.
4772
+ 14d8186 Making paths work a little more intelligently
4773
+ 0335743 adding config file stuff, but not using it yet. I have decided to release the next version without them.
4774
+ ba76eb2 Cleaning up tests resulting from the changes to the parser
4775
+ e605a5c The language now verifies some resemblance to closurehood. I now only need to fix the library to expect this behaviour.
4776
+ 526deef Fixed merging of state values, but I have not yet solved merging of parameter or metaparam values, since they are quite different.
4777
+ 9e1c63a Protecting from bug in Syslog, and fixing some more log messages
4778
+ 76176a9 central logging is fully functional now, but it is painfully slow, so it is disabled by default
4779
+ b6c63f6 Central logging now works, although there appear to be a few kinks to work out.
4780
+ 0ae5e33 Adding logging methods to all Puppet::Element instances, and converting all instance log statements to use those methods. Additionally modified logging to take advantage of this by including the path of the logging object in the output. Logs will still need some cleanup to avoid duplicate information.
4781
+ 0d3db79 adding tags and path accessors
4782
+ a8645a4 Further small bug fixes towards running puppet on my network
4783
+ df8dbba fixing sources so that they always have a corresponding checksum state
4784
+ e8912d5 files and directories are now created as the correct user and group if they are set
4785
+ 1b74e8e The Puppet::Util.asuser function now works; had to slightly modify user.rb to make checking work. In addition, exec.rb now takes advantage of it. I also decided to make a small change to type.rb -- validstates now only returns state names, not names and states.
4786
+ 32d89ba fixing certmgr tests
4787
+ f732880 Getting rid of the tc_ prefix to test cases
4788
+ 8fe558c general cleanup, as i move towards running it locally
4789
+ 5ab12f9 fixing path to facter
4790
+ f036778 Apt-cache was showing more information that I thought, so I had to redo how I was collecting the most recent package version
4791
+ a232e5c Made tweaks here and there to get it running better on my local network. I am inches away from that happening. All tests pass.
4792
+ a6d0292 adding better docs to packages
4793
+ 3cd8ee9 "latest" is now a valid value for packages, and yum support is also included
4794
+ 66db3d8 making service changes; it is still basically non-functional except in the degenerate case of using "init"
4795
+ 194dab3 Adding some semantic tagging. It is not exactly full-featured yet, and it is not used at all, but it was sufficient for some proof-of-concept stuff in preparation for the conference
4796
+ 55d7bbd adding tag support to scopes and the transportable class
4797
+ e563189 switching test classes back to modules -- making them classes causes too many empty tests to run every time
4798
+ 9d3aaad removing the redundant pfile from the pfile state file names
4799
+ ed42371 Switched @should to an array, so all objects can now handle that. I have not yet gone through and done the other cool things that can result, but that will have to wait until tomorrow. Also, I moved all of the pfile states into separate files, since the file was getting unweildy.
4800
+ 6af0e0e added overrides ability
4801
+ 0d6241c switching all relationships to be centrally maintained and to use symbolic references, rather than literal ones; also going through and making all tests pass again after mucking with services
4802
+ a96bdac Okay, services are now managed, um, entirely differently. I have the beginnings of a system for supporting different service management frameworks, although I currently only support <nothing> and init scripts
4803
+ 47ba186 adding a test for includes
4804
+ 9464224 moving specific packaging support into separate files
4805
+ f48f14a fixing behaviour when files are missing
4806
+ 5bb8c4a fixing output in noop
4807
+ abcac81 Rearranging the packaging support a bit -- it is now more clear and significantly easier to understand, maintain, and enhance.
4808
+ 8211df0 Many, many changes toward a completely functional system. The only current problems with my home config are that apache's stupid init script does not do status and that packages are not working as non-root users (which makes sense).
4809
+ d20ac8e Hoping this will get rid of the directory being printed
4810
+ 4c13c10 Nodes now support inheritance, for better or for worse.
4811
+ 781c69b The new "include" syntax works now.
4812
+ 400b103 fixing "ignore" documentation to parse RST correctly.
4813
+ 5590148 Okay, all tests pass again. The work done on nodes will take a little while to clarify and such, but it should work pretty well.
4814
+ f7d9b83 I am still somewhat in mid-change, but I have made the biggest changes to making nodes work correctly. The core code works, but I still need to fix my various test cases
4815
+ 03f5733 adding a ParsedFile class to handle figuring out whether a file has changed
4816
+ f757556 converting tc_relationships.rb to the test base class
4817
+ 5dc3cb0 Okay, significant change -- classes no longer accept arguments (which makes things simpler but encourages the user of global variables, which is bad), and classes are finally singletons, meaning they will only ever be evaluated for each node a single time. I still need to make nodes work correctly, but that is going to involve modifying the parsing system and a bit more
4818
+ 0747b4c adding stinkloads of comments to ast.rb (I am trying to go through and better comment my code over time), refactoring some of the AST classes, and working towards a more sensible class/definition/node distinction
4819
+ d6982d5 adding some new language tests
4820
+ 48155b8 added log, metaloglevel and @metaparams to support setting loglevels
4821
+ 041ca4b switching log.rb to raise Puppet::DevError events
4822
+ 16c9f83 My cfengine2puppet config now entirely parses. The biggest problem I ran into is that my glob-based parsing was only returning the results of the last parsed file, instead of collecting all of the results.
4823
+ 23d3c93 adding --noop to puppet executable, and removing some extraneous comments
4824
+ a345931 Successfully parsed my entire converted cfengine configuration; these are all fixes for bugs i found as a result. I have not tried to execute the configuration yet.
4825
+ a8bdada Users and groups now work on OS X. I had to make some key changes to how transactions and state changes work -- the most important is that it is no longer an error to try to sync a state that is already in sync. I could not find another way to handle all user states being out of sync but the first state actually syncs everything.
4826
+ 6654c4c fixing users on normal machines
4827
+ 106d397 Users and groups now nearly work on normal machines and on os x, and I think I have a decent platform for expansion to some of the other important elements like hosts (probably most important after users and groups). Some tests are still failing on os x, because netinfo sucks, but I will hopefully be able to figure out a solution soon. Stupid OS X and NetInfo.
4828
+ 42deabb all tests for users and groups pass again on fedora, debian, and solaris
4829
+ e0d1d31 temporary commit so i can move to my workstation; groups and users are way b0rked
4830
+ 29c291a Creating a "change_to_s" method on State, so individual states can override and and determine how they get printed
4831
+ 80a2808 Cron is now fully functional and tested on 3 platforms. In order to make it work, I had to do some modifications to TransObject#to_type and Type.create, but all tests pass now. Type.create is now handling errors on creating objects, so if you try to create an invalid object you will just get nil returned, rather than receiving an error.
4832
+ e25e8c6 adding keywords
4833
+ aebfef0 adding keywords
4834
+ 11d3d24 cron is working, but i want to write quite a few more test cases
4835
+ 036ba7a small fixing to merge(), and changing output of statechange
4836
+ 093963e finishing up merge method
4837
+ ac0454a making "Type.new" private, and switching to "Type.create", so that i can merge new objects with existing objects and such; converted all files, and tested them
4838
+ f7116e5 switching FileTesting to a class, and modifying test suites as appropriate
4839
+ 7861269 removed directory output
4840
+ bf701dc adding extra checks to make sure networking is secure, and refactoring a heckuva lot of test
4841
+ 0c97bb1 fixed problem using arrays
4842
+ 897de46 cleaning up tests a bit; mostly just making sure tests clean up after themselves, but also doing some rearrangement and fixing a list() call
4843
+ 6767dd2 debugged ignore in fileserver, added tests to ignore tc and fixed server.list in tc for filesources and fileserver
4844
+ 39aaa99 fixing some tests
4845
+ 6c6ff03 moving some testing and debugging around
4846
+ 192c07b fixing non-netinfo group
4847
+ 9ebb767 fixing non-netinfo group
4848
+ 669ae38 modifications to eliminate code duplication in state creation, mostly to support cron
4849
+ ae00500 preparations for supporting netinfo in users
4850
+ 610f95c switching groups back to having namevar be a parameter instead of a state
4851
+ 2a6710b fileserver still has a bug
4852
+ ec66034 added ignore to fileserver and pfile
4853
+ 3d5f5a1 adding cron stuff; it does not work at all yet
4854
+ 0d3024f adding globbing to import
4855
+ 5438eff removed comp.sync and replaced system mkdir -p
4856
+ 79961e1 added test case for ignore
4857
+ 157953a added ignore to pfile
4858
+ 51948bd adding example configs
4859
+ d43dc86 tracked down some sticky bugs related to having false values and empty strings; all fixed now, and all tests pass again, including the new tests that cover the bugs i found
4860
+ aca4cf8 fixing error handling so that failed objects are completely destroyed; they were receiving events even though they were supposed to be gone
4861
+ 0a4e392 fixing component flattening and sorting; it was not working for cases where objects inside of components had dependencies from other components
4862
+ 58ca9d1 adding snippet test to verify correct behaviour with missing exec path; also, adding "creates" parameter to exec
4863
+ f9df523 intermediate commit so cron is not loaded
4864
+ 4dd1dd8 adding more comments from talking to andy
4865
+ 3306cc7 incorporating comments from talking to andrew
4866
+ 29fa170 incorporating comments from talking to andrew
4867
+ d0eb566 some small fixes
4868
+ ee1eba2 small updates
4869
+ f69abc9 adding cfengine to puppet parser, but it is not even remotely close to functional yet
4870
+ 8f7b191 fixing groups again after getting them to work with netinfo
4871
+ da6590d group management now works on os x, although it is six shades of really nasty. Netinfo is a nightmare.
4872
+ 3726cee adding debug setting to the top-level test class
4873
+ 99db7bc reverting changes in the reverse order of what i executed them
4874
+ 8f0ef3f removing debugging
4875
+ 2213430 making states capable of being the namevar
4876
+ 923226e all tests now pass on solaris 10x86; i had to do some stupid hacking with base64 for it to work, and i am working getting a much better base class for all test classes
4877
+ edc392d adding a break if randomization takes too long
4878
+ 4cc12a8 finishing up user and group support for now
4879
+ 9e4ed0c rearranging some documentation
4880
+ 24b1c67 adding scopetest
4881
+ b77d295 adding user and group classes (although user class is not yet functional), and added "is(state)" and "should(state)" methods for retrieving the respective values on a specified state
4882
+ 4f2812a changing rollback() to do event handling also
4883
+ 72638e6 adding simple newcomp() method to base test class
4884
+ 795a5a0 adding all of the work necessary for tidying
4885
+ f7a5f87 removing DEFAULTPORT stuff
4886
+ 21244f4 fixing small bug in setting default port
4887
+ c0c958b changing some documentation methods around
4888
+ 3fb6f49 rearranging puppetdoc to not separate states and parameters, and to allow undocumented states
4889
+ 75ec054 committing initial tidy stuff, so i can move to the laptop
4890
+ 0d01770 cleaning up obviated methods
4891
+ 747c3f6 defining $name in each component scope, and adding test case
4892
+ f49ffa3 defining configstatted
4893
+ 750b880 removing if-related keywords
4894
+ 008cea5 fixing error calls
4895
+ e1bf0e1 fixing bug where remote server name is ignored
4896
+ e1de002 Fixed small bug that caused the config files to be parsed on every connection
4897
+ 5c0fb02 fixing documentation for file source state
4898
+ 6a96fcc adding file reread to master, although it is plenty hackish
4899
+ cff3a5b fileserver config file now reloads when it is more than 60 seconds out of date
4900
+ 998b415 correcting documentation on autosign in puppetmasterd, and switching the autosign.conf file to use the same authstore as fileserver.conf
4901
+ 7f274a4 catching a potential security problem -- requiring that "path" always be set for a fileserver mount
4902
+ 8a99636 adding a "--noop" option along with a test case for it
4903
+ f65563d changing default hostname to "puppet", and adding --parseonly option along with a test case for it
4904
+ 0629065 fixing puppet to use correct method and adding a real test case for it
4905
+ 82ac86e changing default manifest location to /etc/puppet/manifests/site.pp
4906
+ 3087f85 changing version number for beta
4907
+ e28e11b removing need for zip in rakefile
4908
+ fc20167 UPdated rakefile
4909
+ 914764b As Christian requested, I am no longer downcasing facts I receive from Facter. Also, removing some outdated files
4910
+ eab7314 bumping up the default log level for changes from info to notice
4911
+ cc48367 I did not have good puppetd tests, so I missed the fact that I was calling the wrong class in puppetd. Fixed.
4912
+ 65d1375 disabling print of library warnings, since webrick and openssl have far too many warnings for comfort
4913
+ cdfaa5e adding RDoc::usage documentation to all executables
4914
+ f279535 This should be the commit that brings us to Beta 1. All tests pass, although I get some (gracefully handled) failures in tc_metrics.rb, and there is now a config file for the fileserver module, including authorization specification for it. I have also reworked error handling in the xmlrpc client and server so errors should propagate more correctly.
4915
+ 28be88c Adding authorization store, initially just used for file serving but eventually for all authorization, most likely
4916
+ 814a9b0 adding config file parsing
4917
+ 9ec321e recompiling parser after removing extraneous debugging
4918
+ 773be96 Added GPL license
4919
+ 48a2e0f making array-as-name work in the language, and adding some more test snippets
4920
+ 66b3355 Certificates now verify!
4921
+ 386ebee replacing if statements with case statement, and adding defaults for both selectors and case statements
4922
+ 583a9c6 remote filecopying now works
4923
+ 5b20c92 Have done a significant reorganization of how clients work, also, along with some interesting trouble shooting on components
4924
+ ba51e70 fixing checksum generation -- i was causing some weird bugs by using the same indicator in different cases, and i added a test for invalid checksum types
4925
+ fb3cff7 small comment change
4926
+ dde841f Created a Handler base class for all of the server handlers, which allows a lot of the manual work to now be automatic
4927
+ 49e3e37 splitting normal file tests and source tests into different files
4928
+ a8fff85 ignoring remote file owner when not running as root
4929
+ f68fe00 moving all server handlers into a specific server subdirectory
4930
+ 129dad7 removing obsolete file
4931
+ 51294a0 moving rake file to the trunk dir
4932
+ 6029ef7 Moving all files into a consolidated trunk. All tests pass except the known-failing certificate test, but there appear to be some errors that are incorrectly not resulting in failurs. I will track those down ASAP.
4933
+ e87eb58 adding test to verify require does not kick off an event
4934
+ 4741eef Execution order is now based on dependency relationships, and those relationships correctly propagate up and descend into components. There is also an event test suite now, along with a (currently simple) component test suite.
4935
+ 63309c3 fixing test base class
4936
+ f026884 just fixed an incredibly ugly bug where @parent meant both parent array and parent class
4937
+ 78939cc passing file and line to all objects
4938
+ 51ffd6f trying to create a testing base class
4939
+ 54e5eb4 moving
4940
+ 4f0750b adding
4941
+ 9f84742 all tests pass except a certificate test i do not know how to fix
4942
+ 163db7c a basic first test of puppetmasterd now passes
4943
+ a3e03e2 all non-executable tests pass now
4944
+ d49a98e further progress towards passing tests
4945
+ 2be10b5 all tests pass except those related to puppetd; i am going to significantly reorganize how serving is done
4946
+ 6eac358 updated version number to allow gem install
4947
+ 8d71cd9 Added rake for Puppet, '--version' to puppet and test case for Puppet.version
4948
+ cfaee58 more progress towards a functional daemon
4949
+ 3cb04cb setting up http to log to a separate file
4950
+ adc10d8 setting up http to log to a separate file
4951
+ c7380c9 renaming
4952
+ cb1956d adding daemon helper module
4953
+ bb4b5a5 done a lot of work on certificates; all tests except one puppetca test pass
4954
+ e2e2474 removing obsolete files
4955
+ 0f7d185 fact.rb is obsolete
4956
+ af1b979 function.rb is obsolete
4957
+ fc0ba4b fixing directory mode creation
4958
+ 5bcae96 renaming again
4959
+ 2687652 renaming openssl to certauthority
4960
+ aacd780 removing comments and making @csr a class attribute
4961
+ 4b5c5bf fixing error output
4962
+ c0b0975 adding creation rollback
4963
+ f654f2d returning transaction from client.config()
4964
+ a6a1148 all tests now pass on os x
4965
+ f3c1487 adding better error handling for missing paths
4966
+ 77e1cf0 fixing verbose output to be better and easier to manage
4967
+ 9c7c71c passing state, so more info can be extracted
4968
+ afcb2ee adding a bit more output
4969
+ bc3a433 committing recent changes for testing
4970
+ 7b14e39 a bit of refactoring, and a bit more functionality
4971
+ 0fce775 okay, switch all cert management to the library, instead of using the openssl binary
4972
+ a1d206a moving
4973
+ 6ba0e10 certificate management; yay
4974
+ de4e5bf oops; removing errant notice msg
4975
+ 223cc9f cleaning up the defaults system even more
4976
+ 74dac8f adding some consistency and tests to the whole puppet defaults system
4977
+ 8bf85e2 adding tests for puppet defaults
4978
+ d14e1b4 uh
4979
+ 4af2559 renaming to avoid name conflicts
4980
+ 5fa0c20 all tests pass again
4981
+ edc2842 local filebuckets are now tested with files
4982
+ e041c8a basic filebucketing is now working
4983
+ cf37c06 Moved documentation to project website.
4984
+ 9f2aaac more changes to documentation
4985
+ 952a76c working on documentation
4986
+ 54895da Updated README, moved the old one to documentation/
4987
+ 2d1e643 Updated doc/big-picture doc/structures, Added rst formating to puppetdoc, and added doc strings for types, states, params, and metaparams.
4988
+ 700b965 dpkg/apt package installation and removal now works
4989
+ e685ddb fixing statefile creation
4990
+ 01666f6 fixing lib loading test
4991
+ 075ffd7 making changes necessary to pass tests on all available platforms
4992
+ b5f6a54 fixing solaris packaging
4993
+ ffe318c fixing packaging to work with rpm, too
4994
+ 64b55c1 creating FileTesting module in puppettest.rb, and getting recursion working with symlinks
4995
+ 9d8f754 adding some attributes to errors
4996
+ dcbbef7 adding symlink back as a separate object
4997
+ e078329 adding symlink back as a separate object
4998
+ 60965c5 removing silly message
4999
+ f624cd5 making the console output slightly less redundant
5000
+ 848df27 okay, last try on sources hopefully -- no failures, and basic functionality all seems to be working
5001
+ cc67845 fixing package listing
5002
+ 326b4ad fixing exec tests to work with new event stuff
5003
+ fa6569d okay, sources seem to be much more understandable here -- only the recursion function is recursive
5004
+ 5351eb9 adding some error checking
5005
+ 60e02de not dump/loading for local client/server
5006
+ 8ec8c8d sources now pass all tests
5007
+ a33d5d4 everything seems to actually be working now, including getting the correct file list back
5008
+ 2d34f8e Ha! finally got recursion and sourcing working together
5009
+ bc38169 redoing how arguments are handled in type.rb -- it is much cleaner now
5010
+ 973385f first versions
5011
+ c577e57 reducing debugging
5012
+ 99eedb3 reducing debugging
5013
+ 8f718da recursive file copying now works even with some limited number of errors
5014
+ aa59473 okay, file sourcing actually seems to work now
5015
+ 9a5477b checkpoint commit
5016
+ 0e94644 moving setpath to parampath=, as a param method
5017
+ 3a67efa adding "=" to metaparam methods, and allowing types to use methods for params
5018
+ de91dbd temp commit before i change the whole way that i am doing source + recursion
5019
+ 9ba72f5 removing, since pfile now has link functionality
5020
+ 311218b removing, since pfile now has link functionality
5021
+ 6f4f821 downcasing the values of all facts
5022
+ b1f3fb8 switching facts to be auto-provided by the client
5023
+ 357afbb removed type.method() syntax, and replaced it with Type { default => value} syntax -- i still need to add test cases
5024
+ f38bdef changing path stuff to be service-specific
5025
+ 84f721d modifying failer stuff
5026
+ 3d725d9 adding more validation methods
5027
+ f2b6762 reducing to one statefile definition
5028
+ ad9913b converting debug() back to Puppet.debug()
5029
+ 13945c5 converting debug() back to Puppet.debug()
5030
+ 668b9de converting debug() back to Puppet.debug()
5031
+ c04b337 converting debug() back to Puppet.debug()
5032
+ 3c4181c adding methods callable from language
5033
+ 88071eb making rpm the default package manager for all linuxes, with exceptions allowed
5034
+ ca87010 defaulting to rpm for everyone i don't know anything about
5035
+ ebe779f adding rpm as the default type for Fedora
5036
+ fbafa84 updates
5037
+ b9c064e Updated install script to include all bin files.
5038
+ 96c37e3 using old name method, since it is required to make names unique given how classes currently work
5039
+ e97e2d9 fully qualifying warning method, because it is not being imported for some reason
5040
+ a984d66 disabling metrics tests on machines missing RRD
5041
+ 78bcfdc adding path stuff everywhere, although i had to keep component names kind of funky
5042
+ 99a9f4b adding link functionality
5043
+ d6e2102 toying with some doc stuff
5044
+ 3f9bb25 removing an obsolete VERBOSE setting
5045
+ 5ff4b02 removing some debugging
5046
+ bf09132 lots of refactoring
5047
+ cc78949 in the middle of a bunch of refactoring; committing so that others can try to replicate the segfault i am seeing
5048
+ 1f2c866 doing some refactoring
5049
+ e19ca97 converting to "include Puppet" and not qualifing output methods
5050
+ 8177700 hopefully, finally resolving recursive file creation problems
5051
+ 01a9905 moving namevar translation to a method
5052
+ fffc09c swapping console colors
5053
+ 2062aac changing comments
5054
+ 75e27cf cleaning up bugs in the tests, and adding more error checking around the bugs
5055
+ 0417fb5 adding refreshonly parameter
5056
+ 6e9975c found a bunch of bugs in Puppet::Storage, plus some bugs in how file recursion was being tested and thus some real bugs in the system
5057
+ 256b84e adding a to_s method
5058
+ d14dc32 fixing storage class; it was not actually correctly retrieving state from disk
5059
+ 96f3980 adding Puppet#recmkdir utility function, and making sure Log and Storage create their own files and directories as necessary
5060
+ 649d59a adding some more tests for recursion plus checksumming, because they are somewhat incompatible for directories
5061
+ cb95dc7 ok, verbose => info
5062
+ 459287c duh, somehow added Blink calls in there...
5063
+ 600f272 adding cwd parameter to exec
5064
+ 4157fa0 exec stuff all works now, end to end
5065
+ 2c1f637 fixing some nasty bugs related to parameter checking
5066
+ 05d59fd fixing a nasty bug related to recursion and nonexistent files
5067
+ 5b7fd63 fixing some nasty bugs related to parameter checking
5068
+ 9e0ab28 adding string vs. symbol testing
5069
+ 8f1da62 adding logdest config
5070
+ cf817e7 changing Log.destination to Log.destination=()
5071
+ d36b4c0 disabling debug by default
5072
+ 420062d changing Log.destination to Log.destination=()
5073
+ c718044 adding the exec stuff
5074
+ 3441b82 finishing rename of file class
5075
+ f250d92 renaming to remove naming conflicts
5076
+ 26bc12b further output cleanup, and fixed the problem with tc_server.rb leaving sleeper processes lying around
5077
+ bb7e283 fixing debugging to severely reduce output but allow it when debugging a specific service
5078
+ c16ca53 changing warnings to debug
5079
+ 00343e3 basic rpm stuff now works
5080
+ 2b2975f fixing metrics tests to work with everything else
5081
+ 0ac91ef correctly returning events
5082
+ 0c4254a metric testing and graphing now works in the library, although nothing has been done in the language
5083
+ 573d301 adding some more tests for loglevel stuff
5084
+ 0ba9d71 adding rpm as RedHat package manager
5085
+ b6b1f5a logging now exactly supports the list of levels that syslog supports, and multiple destinations (syslog, files, and console) are now supported
5086
+ e3c3283 renaming message.rb to log.rb
5087
+ 2b3b15e temporary changes to prepare for a rename
5088
+ 8395639 puppetest.rb should probably be puppettest.rb
5089
+ cd48af7 renaming blink to puppet
5090
+ 60783f0 renaming blink to puppet
5091
+ 8f95084 renaming blink to puppet
5092
+ 6f07413 you can now at least test for whether a package is installed, although you still cannot do anything if it is not -- the barrier is knowing how to get the package
5093
+ 65c2a69 adding validparam() to Blink::Type
5094
+ 500a135 fixing file.rb so it works on Darwin, also
5095
+ 90b9b2d updates
5096
+ 3f0687b updates
5097
+ 5324062 adding new classes and tests
5098
+ 0dad57a md5 summing now works, all the way through!
5099
+ d1f2187 checksums now work, but not all the way through yet
5100
+ 18d755a Rahh! component dependencies now work!
5101
+ 922994e everything passes all of the tests, but i do not think the component-level metaparams are working
5102
+ cdfdfb9 adding some more tests for Blink::Type
5103
+ d42efbe done some more work on making components act like normal objects, but now i need to figure out how to spread events up the tree, rather than just point to point
5104
+ 0ab9685 dependencies now work, although you cannot yet specify them for components
5105
+ 2b97b47 there are now explicit tests for transactions, including rollback, and more tests involving querying
5106
+ b46135f adding simple query syntax stuff
5107
+ 7fecad3 i now have basic events: you can only specify simple object types as requirements, but hey, it works -- refresh() gets called
5108
+ 02f1185 renaming events to event
5109
+ d70229b update before rename
5110
+ c0d86a4 intermediate; no extra functionality yet, but moving away from discussing namevars outside of a given class
5111
+ d86e479 All tests pass again, and i have added Type.allclear to remove all existing type instances, thus making it much easier to run all of the parser and lexer and then server tests; i have also added remove server tests
5112
+ ebc02a8 okay, everything works again, although it still might be a touch fragile
5113
+ 5477f36 i am giving up on fileparsing for now; it does not work yet
5114
+ 576a031 okay, bin/blinker works again, and i have modified both client and server to be a bit easier to use non-networked
5115
+ 03741b4 we now have networking it is very basic right now: the server gets passed a file name, and the client gets passed the server to which to connect. The client gets its config, evaluates it, and exits
5116
+ 4a4438d okay, implicit iteration now occurs at least at object definition time
5117
+ 4a9c1a2 enabling mucking with debug and noop
5118
+ f91451d yep, arrays are always passed
5119
+ d0d8df9 final fixes on passing methods through to types
5120
+ 3a07a4d typesettings now correctly pass all the way through and can only run specified methods, using "allowedmethods"
5121
+ 12418e1 the tree transformations work throughout the whole system now
5122
+ f9a223c transformations from the client through to the transactional execution now works!
5123
+ 00a620d unmoving
5124
+ 135134c updates
5125
+ 4da3b51 moving
5126
+ 259692c moving
5127
+ 3b33738 switched to just passing scopes around, instead of passing the interpreter object around
5128
+ 529b9a7 file recursion now works
5129
+ 4e03ed1 i can now execute simple scripts manually!
5130
+ ec88acf i can basically actually do work now
5131
+ 42dadad moving
5132
+ 817f571 adding lots of verbosity, and starting to actually make sure things execute -- tests are failing, tho
5133
+ 2cce619 basic components now work
5134
+ 49da910 we now have nested scopes, and we've got the beginnings of components, although many tests are currently failing
5135
+ 7689d19 simplifying argument parsing in Blink#message
5136
+ 08d4260 initializing @noop in element.rb
5137
+ 865dffe dealing with having moved the examples to the language area
5138
+ a1a7ae4 moving to the language tree
5139
+ 85b9f91 everything works again, including components
5140
+ 9ea0c30 making components work
5141
+ 1f95fe2 moving component.rb to type/
5142
+ 7df572b removing most functionality, since type.rb already has it
5143
+ 565554f finishing reorganization of base classes and such; there is now a clear tree heirarchy, with parents and children -- all tests pass on the types, but there are still some issues with client/server stuff
5144
+ 9843da6 cleaning up object tree and adding a simple virtual base class for both types and states
5145
+ d0c6b0c adding transactions
5146
+ 89d2381 moving event info out of type.rb
5147
+ 3c6c0f7 removing elements.rb
5148
+ e452f00 preparing to remove elements.rb
5149
+ cf08be1 renaming statetree to elements
5150
+ b6d0f0c first version of finalized base classes
5151
+ f984192 noop seems to basically be working, but i need to reorganize the whole type/state structure -- that is starting after this commit
5152
+ c01bc81 using the example syslog.conf instead of the one in /etc
5153
+ 57194eb adding some example debian configs
5154
+ 6cd71f8 filetypes now support multiple record types, and newlines can be escaped
5155
+ 7378765 completed the first step to enabling multiple record types in filetypes
5156
+ 490854a the client now executes "evaluate", which might not be a good thing -- i am getting failures if files do not exist, for instance
5157
+ 6127e43 filerecord.rb: duh, fixing a small debug string printing bug
5158
+ 371235b reorganizing the FileType/FileRecord into a base class (TypeGenerator) and basing them off it
5159
+ 7deba97 adding typegenerator baseclass
5160
+ b18d071 fact.rb is no longer a subclass of Blink::Type
5161
+ 43a63db fixing filetype and component to take into account changes type interface.rb and type.rb
5162
+ a16493d type.rb: adding methods to simplify type initialization, and adding eachtype() to simplify testing
5163
+ 69a1276 adding some tests on the interface methods in Blink::Type
5164
+ de360c9 renaming objects to types, since they are just subclasses of Blink::Type
5165
+ b872b72 renaming types to type everywhere; all tests now pass
5166
+ a50d461 changing types to type internally
5167
+ c0bc63f moving types to type
5168
+ b85ac7b renaming types.rb to type.rb
5169
+ 9d163d0 changing Types to Type
5170
+ 68409ef adding
5171
+ cb5f54c deprecating interface.rb
5172
+ 974969d final changes before deprecating
5173
+ f8b08b2 adding an fqpath method to state.rb
5174
+ ae13f00 adding name information and a FileRecordState class
5175
+ a489639 moving some methods around
5176
+ 14c2308 adding markers
5177
+ a1bd01d changing type[param] to return the state instead of the value
5178
+ 41b7fbd renaming oparse to filetype
5179
+ 98374bc renaming oparse to filetype
5180
+ 8ab03d0 renaming oparse to filetype
5181
+ c2e83c5 renaming oparse to filetype
5182
+ 2360201 adding some comments
5183
+ 3904d2e fixing most of the function call stuff
5184
+ 13f16b6 the client is now successfully creating objects from the hashes passed by the server
5185
+ 6140bee making fact a real type
5186
+ d94d7a3 moving state.rb to types/
5187
+ e86cf4c renaming "value" to "is"
5188
+ d8e8b7b renaming state, and adding modification class
5189
+ c0c1f1a renaming attributes to states
5190
+ 6dce8fc renaming objects to types
5191
+ a90af49 renaming objects to types
5192
+ 5e19d7d renaming objects to types
5193
+ afd4349 updates
5194
+ 67fae6d updates
5195
+ b4bb680 removing link when done
5196
+ c6755f5 adding class collection and naming stuff
5197
+ e5676ab testing keyword
5198
+ f3d1118 removing some excess libs from blink.rb
5199
+ 585c4fc cleaning up the start script
5200
+ 61f8434 cleaning up a bit
5201
+ 52fe914 removing evaluate test
5202
+ 69651dd removing bogus output
5203
+ 8fd8d62 removing output, and fixing path so it is not hardcoded
5204
+ 9da1485 temporarily removing inclusion of time in output
5205
+ 4d7bbaa creating extra message methods
5206
+ 0187bf7 removing execute bit
5207
+ 6a82d07 adding readme
5208
+ 3824817 copy test script
5209
+ 67b7b34 okay, all tests pass again
5210
+ 35f742c adding client stuff to the library tree
5211
+ 02ed7d3 reorganizing tests
5212
+ 8bc935e adding comments
5213
+ a0d0fa8 adding
5214
+ 11b0374 moving client.rb to the library tree
5215
+ cb785bd moving client.rb to the library tree
5216
+ 8788552 fixing [] method in function.rb
5217
+ c86a770 adding operatingsystemrelease
5218
+ 21ca565 renaming tc_functions.rb, and adding to ts_other.rb
5219
+ 1aab204 functions mostly work
5220
+ c45c5c4 renaming
5221
+ 06734a9 updates so i can rename
5222
+ 9bf82b6 adding package source, initially including only files as a source
5223
+ e40d5f2 returning value instead of fact
5224
+ 9fa899d reorganizing
5225
+ 4642515 reorganizing
5226
+ 5807dce reorganizing
5227
+ 6ee8b4e reorganizing
5228
+ 5416017 reorganizing
5229
+ 54e9b5e adding structure
5230
+