puppet 2.6.1 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- data/CHANGELOG +51 -195
 - data/LICENSE +2 -2
 - data/conf/suse/puppet.spec +13 -10
 - data/install.rb +7 -13
 - data/lib/puppet.rb +1 -1
 - data/lib/puppet/application.rb +17 -21
 - data/lib/puppet/defaults.rb +1 -1
 - data/lib/puppet/dsl.rb +0 -4
 - data/lib/puppet/dsl/resource_type_api.rb +16 -10
 - data/lib/puppet/external/event-loop/event-loop.rb +15 -11
 - data/lib/puppet/feature/base.rb +2 -1
 - data/lib/puppet/feature/rails.rb +1 -3
 - data/lib/puppet/network/http/webrick/rest.rb +1 -0
 - data/lib/puppet/network/http_pool.rb +0 -12
 - data/lib/puppet/parser/ast/function.rb +1 -1
 - data/lib/puppet/parser/ast/resource.rb +1 -5
 - data/lib/puppet/parser/functions/extlookup.rb +1 -1
 - data/lib/puppet/parser/functions/versioncmp.rb +3 -3
 - data/lib/puppet/parser/lexer.rb +1 -1
 - data/lib/puppet/parser/parser_support.rb +4 -2
 - data/lib/puppet/parser/resource.rb +8 -0
 - data/lib/puppet/parser/type_loader.rb +50 -48
 - data/lib/puppet/provider/nameservice.rb +1 -0
 - data/lib/puppet/provider/nameservice/objectadd.rb +2 -1
 - data/lib/puppet/provider/service/freebsd.rb +1 -1
 - data/lib/puppet/provider/service/launchd.rb +16 -9
 - data/lib/puppet/provider/ssh_authorized_key/parsed.rb +7 -0
 - data/lib/puppet/provider/user/hpux.rb +0 -1
 - data/lib/puppet/provider/user/user_role_add.rb +21 -9
 - data/lib/puppet/provider/user/useradd.rb +44 -3
 - data/lib/puppet/rails.rb +3 -3
 - data/lib/puppet/reference/configuration.rb +7 -12
 - data/lib/puppet/reference/indirection.rb +2 -2
 - data/lib/puppet/reference/metaparameter.rb +10 -9
 - data/lib/puppet/reference/type.rb +6 -6
 - data/lib/puppet/reports/rrdgraph.rb +1 -1
 - data/lib/puppet/reports/tagmail.rb +1 -1
 - data/lib/puppet/ssl/certificate_request.rb +1 -1
 - data/lib/puppet/sslcertificates/ca.rb +4 -10
 - data/lib/puppet/type.rb +3 -3
 - data/lib/puppet/type/cron.rb +1 -1
 - data/lib/puppet/type/tidy.rb +1 -0
 - data/lib/puppet/type/user.rb +55 -0
 - data/lib/puppet/type/whit.rb +4 -0
 - data/lib/puppet/util.rb +8 -0
 - data/lib/puppet/util/metric.rb +38 -9
 - data/lib/puppet/util/rdoc/parser.rb +10 -7
 - data/lib/puppet/util/reference.rb +4 -4
 - data/lib/puppet/util/zaml.rb +0 -1
 - data/spec/fixtures/yaml/report0.25.x.yaml +64 -0
 - data/spec/fixtures/yaml/report2.6.x.yaml +190 -0
 - data/spec/integration/application/doc_spec.rb +55 -0
 - data/spec/integration/defaults_spec.rb +1 -1
 - data/spec/integration/parser/compiler_spec.rb +21 -0
 - data/spec/integration/parser/ruby_manifest_spec.rb +128 -0
 - data/spec/lib/puppet_spec/files.rb +1 -0
 - data/spec/spec_helper.rb +1 -0
 - data/spec/unit/application_spec.rb +16 -25
 - data/spec/unit/dsl/resource_type_api_spec.rb +32 -12
 - data/spec/unit/indirector/node/active_record_spec.rb +0 -1
 - data/spec/unit/parser/ast/function_spec.rb +14 -4
 - data/spec/unit/parser/lexer_spec.rb +8 -0
 - data/spec/unit/parser/parser_spec.rb +0 -9
 - data/spec/unit/parser/type_loader_spec.rb +3 -16
 - data/spec/unit/provider/service/launchd_spec.rb +8 -5
 - data/spec/unit/provider/user/user_role_add_spec.rb +18 -1
 - data/spec/unit/provider/user/useradd_spec.rb +19 -0
 - data/spec/unit/rails_spec.rb +10 -4
 - data/spec/unit/reports/rrdgraph_spec.rb +31 -0
 - data/spec/unit/reports/tagmail_spec.rb +1 -0
 - data/spec/unit/sslcertificates/ca_spec.rb +110 -0
 - data/spec/unit/type/user_spec.rb +19 -1
 - data/spec/unit/type/whit_spec.rb +11 -0
 - data/spec/unit/type_spec.rb +7 -0
 - data/spec/unit/util/rdoc/parser_spec.rb +18 -14
 - data/spec/unit/util/zaml_spec.rb +2 -1
 - metadata +11 -6
 - data/conf/suse/ruby-env.patch +0 -17
 - data/test/certmgr/ca.rb +0 -87
 
    
        data/CHANGELOG
    CHANGED
    
    | 
         @@ -1,5 +1,56 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            2.6.2
         
     | 
| 
      
 2 
     | 
    
         
            +
            =====
         
     | 
| 
      
 3 
     | 
    
         
            +
            1d719be  Fix for #4945 -- explicitly check os to supress man page installation
         
     | 
| 
      
 4 
     | 
    
         
            +
            55417bc  Reversion of 021d534482dd8edb863cb77d668ac3525362a0a6
         
     | 
| 
      
 5 
     | 
    
         
            +
            a6e2bea  Fixed #4919 - added parenths to fix error message:
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            2.6.2rc1
         
     | 
| 
      
 8 
     | 
    
         
            +
            ========
         
     | 
| 
      
 9 
     | 
    
         
            +
            917c520  Incremented version to 2.6.2
         
     | 
| 
      
 10 
     | 
    
         
            +
            900eae4  Updated CHANGELOG for 2.6.2rc1
         
     | 
| 
      
 11 
     | 
    
         
            +
            1b6094d  Fixed documentation typo
         
     | 
| 
      
 12 
     | 
    
         
            +
            bdf12fe  Fix for #4896 -- stray newline left over from removed diagnostic
         
     | 
| 
      
 13 
     | 
    
         
            +
            e7424c6  (#4772) Update SuSE .spec file
         
     | 
| 
      
 14 
     | 
    
         
            +
            0aaa742  Fixes #4792 (Duplicate definition since 2.6.1 upgrade)
         
     | 
| 
      
 15 
     | 
    
         
            +
            ea49d13  Improvement to #4025: made spec tests work on all platforms
         
     | 
| 
      
 16 
     | 
    
         
            +
            0b4ce08  Adds #3046 - support for password min/max age
         
     | 
| 
      
 17 
     | 
    
         
            +
            e9f9d26  [#4783] (#4783) Fix RRDGraph report generation
         
     | 
| 
      
 18 
     | 
    
         
            +
            34f87cf  Add user account expiry to the useradd type and provider
         
     | 
| 
      
 19 
     | 
    
         
            +
            a7fb9b1  Fixed #4025 (failure in launchd if certain plists are binary).
         
     | 
| 
      
 20 
     | 
    
         
            +
            2573872  Fix for #4649 -- avoid unsupported features on non-posix systems
         
     | 
| 
      
 21 
     | 
    
         
            +
            eb9279c  Fix for 4273 -- revert b7e2580ab49ecdb67fc9b522829c005fc3750fbe
         
     | 
| 
      
 22 
     | 
    
         
            +
            53a2bea  Fix for #4804 -- escaped backslashes in interpolated strings
         
     | 
| 
      
 23 
     | 
    
         
            +
            d12e477  Fixes #4863 (Missing "require 'webrick'" causes nondeterministic spec failures)
         
     | 
| 
      
 24 
     | 
    
         
            +
            574812e  (#4860) Add regression tests that would have caught bad params method
         
     | 
| 
      
 25 
     | 
    
         
            +
            68947e7  (#4860) Fix wrong method name.. params seems to be renamed to parameters
         
     | 
| 
      
 26 
     | 
    
         
            +
            021359b  Fix for #4644: install.rb works properly on Windows
         
     | 
| 
      
 27 
     | 
    
         
            +
            d057b90  Fix #4726 Update puppet rrdtool metric code to support modern rrd ruby bindings
         
     | 
| 
      
 28 
     | 
    
         
            +
            66cf3a9  Fix #4226 - Prepend 'Puppet CA: ' to fqdn for default root ca_name
         
     | 
| 
      
 29 
     | 
    
         
            +
            d54352a  Port Puppet::SSLCertificates::CA test to rspec
         
     | 
| 
      
 30 
     | 
    
         
            +
            effc6b8  Fixes #4852 - error messages involving Whits now mention Classes instead
         
     | 
| 
      
 31 
     | 
    
         
            +
            3f99bd7  Fix #4267 - Create a backup before dropping permissions
         
     | 
| 
      
 32 
     | 
    
         
            +
            6468f4e  (#4763) Don't call a method that was removed in Rails 3 activerecord
         
     | 
| 
      
 33 
     | 
    
         
            +
            79d5fde  Fixed #4763 - Hardcoded ActiveRecord version
         
     | 
| 
      
 34 
     | 
    
         
            +
            4798df3  Fixes #4822 -- Puppet doc -o option broken
         
     | 
| 
      
 35 
     | 
    
         
            +
            99c1019  [#4798] Puppet doc manifests documentation mode broken
         
     | 
| 
      
 36 
     | 
    
         
            +
            8cd1540  [#4692] undefined variables cause :undef to be passed to functions
         
     | 
| 
      
 37 
     | 
    
         
            +
            06bf566  [#4787] Missing require causing failure
         
     | 
| 
      
 38 
     | 
    
         
            +
            bba04e0  Fix for #4746 -- Newline goes at the _end_ of the line
         
     | 
| 
      
 39 
     | 
    
         
            +
            9e17c25  Fix #4743: Allow the audit meta-parameter to accept both 'all', and :all
         
     | 
| 
      
 40 
     | 
    
         
            +
            f950061  [#4716] ResourceTypeAPI exposes implementation details that are likely to change
         
     | 
| 
      
 41 
     | 
    
         
            +
            8ff4b9a  Fixed #4819 - corrected cron documentation
         
     | 
| 
      
 42 
     | 
    
         
            +
            2b50f30  [#4771] Import of manifests with the same name only happens once
         
     | 
| 
      
 43 
     | 
    
         
            +
            7b8cb74  Fix for #4708 - tagmail should allow . in tagname
         
     | 
| 
      
 44 
     | 
    
         
            +
            6f229ee  Minimal fix for #4631 -- set implicit classes as in 0.25.x
         
     | 
| 
      
 45 
     | 
    
         
            +
            021d534  Fixed #3707 - rpm, like dpkg-query exits 1 if the package is not installed.  Returning nil in this provider had the effect that on every run, puppet would end up calling yum erase .  Returning the correct data structure resolves this.
         
     | 
| 
      
 46 
     | 
    
         
            +
            216f663  Fixed Puppet Doc TOC generation
         
     | 
| 
      
 47 
     | 
    
         
            +
            c3cb57c  Fixed versioncmp function typo
         
     | 
| 
      
 48 
     | 
    
         
            +
            898a170  Fixed Reductive references in LICENSE file
         
     | 
| 
      
 49 
     | 
    
         
            +
            996f14e  Documentation updates for Markdown conversion
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
       1 
51 
     | 
    
         
             
            2.6.1
         
     | 
| 
       2 
52 
     | 
    
         
             
            =====
         
     | 
| 
      
 53 
     | 
    
         
            +
            cad1e0f  Updated CHANGELOG for 2.6.1
         
     | 
| 
       3 
54 
     | 
    
         
             
            14f871d  [#4756] addendum for #4756
         
     | 
| 
       4 
55 
     | 
    
         
             
            9bdfe69  Fix for Bug #4756 - Providers no longer respect missing features Restored deleted lines from type.rb and reinstated unit tests
         
     | 
| 
       5 
56 
     | 
    
         
             
            14b3340  Fix for #4736 -- preserve case of defined resources
         
     | 
| 
         @@ -3550,10 +3601,6 @@ ada960b  Constants in provider/interface/redhat.rb are getting redifined as they 
     | 
|
| 
       3550 
3601 
     | 
    
         
             
            5e8d71d  Fix the ral:providers:host:parsed tests so they run successfully
         
     | 
| 
       3551 
3602 
     | 
    
         
             
            9530df1  Updated to version 0.23.2
         
     | 
| 
       3552 
3603 
     | 
    
         
             
            0d312a1  Updated to version 0.23.2
         
     | 
| 
       3553 
     | 
    
         
            -
             
     | 
| 
       3554 
     | 
    
         
            -
            0.23.2
         
     | 
| 
       3555 
     | 
    
         
            -
            ======
         
     | 
| 
       3556 
     | 
    
         
            -
            49c9a62  Adding release tag REL_0_23_2
         
     | 
| 
       3557 
3604 
     | 
    
         
             
            b84015a  The last set of bug-fixes before the next release.  This commit just fixes a couple of problems that resulted when I changed the Provider#initialize method to not duplicate its argument, which was necessary for ParsedFile.
         
     | 
| 
       3558 
3605 
     | 
    
         
             
            aaf5959  Adding test support for the other mongrel configuration header
         
     | 
| 
       3559 
3606 
     | 
    
         
             
            db0ffc7  Copying the "commands" and "confine" statements to the actual dscl providers, since they need to be there to determine where the providers are suitable.  Otherwise base classes could unnecessarily affect how subclasses work.
         
     | 
| 
         @@ -3583,10 +3630,6 @@ a8bf96a  Adding a file that should have been in a commit from yesterda 
     | 
|
| 
       3583 
3630 
     | 
    
         
             
            530d290  Applying a modification of the patch from Marcin Owsiany, allowing Mongrel to be a CA
         
     | 
| 
       3584 
3631 
     | 
    
         
             
            64fba48  Updated to version 0.23.1
         
     | 
| 
       3585 
3632 
     | 
    
         
             
            d3988cc  Updated to version 0.23.1
         
     | 
| 
       3586 
     | 
    
         
            -
             
     | 
| 
       3587 
     | 
    
         
            -
            0.23.1
         
     | 
| 
       3588 
     | 
    
         
            -
            ======
         
     | 
| 
       3589 
     | 
    
         
            -
            0f7f752  Adding release tag REL_0_23_1
         
     | 
| 
       3590 
3633 
     | 
    
         
             
            2229dc1  Fixing #726 -- mounts can now correctly handle mounted but absent filesystems.
         
     | 
| 
       3591 
3634 
     | 
    
         
             
            47b7058  Adding some code in an attempt to fix #728, but it is all commented out since I could not get it fixed in time for beaker
         
     | 
| 
       3592 
3635 
     | 
    
         
             
            2e14ea4  Attempting to clean up the mount documentation as in #727.
         
     | 
| 
         @@ -3677,10 +3720,6 @@ dc2a0bf  Use single config file 
     | 
|
| 
       3677 
3720 
     | 
    
         
             
            ada4355  Updated to version 0.23.0
         
     | 
| 
       3678 
3721 
     | 
    
         
             
            d8f4c53  Updated to version 0.23.0
         
     | 
| 
       3679 
3722 
     | 
    
         
             
            049faf8  Updated to version 0.23.0
         
     | 
| 
       3680 
     | 
    
         
            -
             
     | 
| 
       3681 
     | 
    
         
            -
            0.23.0
         
     | 
| 
       3682 
     | 
    
         
            -
            ======
         
     | 
| 
       3683 
     | 
    
         
            -
            f588d47  Adding release tag REL_0_23_0
         
     | 
| 
       3684 
3723 
     | 
    
         
             
            8844fca  Changing the paths to match laeg, instead of culain.
         
     | 
| 
       3685 
3724 
     | 
    
         
             
            d79a788  Modified the fileserver to cache file information, so that each file isn't being read on every connection.  Also, added londo's patch from #678 to avoid reading entire files into memory.
         
     | 
| 
       3686 
3725 
     | 
    
         
             
            944e1f4  More updates to puppet-test
         
     | 
| 
         @@ -3854,10 +3893,6 @@ fb4f04d  updating changelog with version number 
     | 
|
| 
       3854 
3893 
     | 
    
         
             
            0f02a54  Updated to version 0.22.4
         
     | 
| 
       3855 
3894 
     | 
    
         
             
            e049999  Updated to version 0.22.4
         
     | 
| 
       3856 
3895 
     | 
    
         
             
            4f2b903  Updated to version 0.22.4
         
     | 
| 
       3857 
     | 
    
         
            -
             
     | 
| 
       3858 
     | 
    
         
            -
            0.22.4
         
     | 
| 
       3859 
     | 
    
         
            -
            ======
         
     | 
| 
       3860 
     | 
    
         
            -
            22ce899  Adding release tag REL_0_22_4
         
     | 
| 
       3861 
3896 
     | 
    
         
             
            3e895b5  Changing the remount stuff back to not repeating the mount options.
         
     | 
| 
       3862 
3897 
     | 
    
         
             
            6438270  Adding a "supports_parameter?" method to test whether a given provider supports the features required by a given parameter.  This is used during attribute instance creation, but its creation was necessicated by test code.
         
     | 
| 
       3863 
3898 
     | 
    
         
             
            c9de332  Fixing the fileserver naming tests after the change to allow "-" in fileserver module names.
         
     | 
| 
         @@ -3921,10 +3956,6 @@ ca5d068  Updating the docs for the sourceselect parameter 
     | 
|
| 
       3921 
3956 
     | 
    
         
             
            a999752  Updated to version 0.22.3
         
     | 
| 
       3922 
3957 
     | 
    
         
             
            24ad5ab  Updated to version 0.22.3
         
     | 
| 
       3923 
3958 
     | 
    
         
             
            9ce7c79  Updated to version 0.22.3
         
     | 
| 
       3924 
     | 
    
         
            -
             
     | 
| 
       3925 
     | 
    
         
            -
            0.22.3
         
     | 
| 
       3926 
     | 
    
         
            -
            ======
         
     | 
| 
       3927 
     | 
    
         
            -
            a3a7ea7  Adding release tag REL_0_22_3
         
     | 
| 
       3928 
3959 
     | 
    
         
             
            e154589  Fixing puppetdoc with the recent changes to the networking code
         
     | 
| 
       3929 
3960 
     | 
    
         
             
            801d0f7  Fixing a bug I apparently introduced in the testing that would have made user management not work with netinfo.  In the process, I am enabling validation on the nameservice subclasses.
         
     | 
| 
       3930 
3961 
     | 
    
         
             
            2544f75  Fixing the documentation to match reality, as reported in #548.
         
     | 
| 
         @@ -3948,10 +3979,6 @@ c5e1a44  Fixing the "readcert" method after getting the signed cert; the method 
     | 
|
| 
       3948 
3979 
     | 
    
         
             
            36feb29  Fixing a small bug in testing whether instance methods are already defined.
         
     | 
| 
       3949 
3980 
     | 
    
         
             
            45904ca  Updated to version 0.22.2
         
     | 
| 
       3950 
3981 
     | 
    
         
             
            0452878  Updated to version 0.22.2
         
     | 
| 
       3951 
     | 
    
         
            -
             
     | 
| 
       3952 
     | 
    
         
            -
            0.22.2
         
     | 
| 
       3953 
     | 
    
         
            -
            ======
         
     | 
| 
       3954 
     | 
    
         
            -
            a917a3e  Adding release tag REL_0_22_2
         
     | 
| 
       3955 
3982 
     | 
    
         
             
            474b86c  Hopefully the last batch of commits before I release 0.22.2.  Mostly just get tests to pass.
         
     | 
| 
       3956 
3983 
     | 
    
         
             
            90d8b2d  Remove no-lockdir patch. Clean changelog
         
     | 
| 
       3957 
3984 
     | 
    
         
             
            a68a7c2  Change puppet's homedir to /var/lib/puppet
         
     | 
| 
         @@ -4106,10 +4133,6 @@ f80bd5e  Fixing exec so it actually works when path is specified as an array 
     | 
|
| 
       4106 
4133 
     | 
    
         
             
            d117aa8  Updated to version 0.22.1
         
     | 
| 
       4107 
4134 
     | 
    
         
             
            1e90209  Updated to version 0.22.1
         
     | 
| 
       4108 
4135 
     | 
    
         
             
            463d3a8  Updated to version 0.22.1
         
     | 
| 
       4109 
     | 
    
         
            -
             
     | 
| 
       4110 
     | 
    
         
            -
            0.22.1
         
     | 
| 
       4111 
     | 
    
         
            -
            ======
         
     | 
| 
       4112 
     | 
    
         
            -
            530c255  Adding release tag REL_0_22_1
         
     | 
| 
       4113 
4136 
     | 
    
         
             
            1d059b0  Fixing #470, I think.  I basically just threw away the validation and let suidmanager do it all when running commands.
         
     | 
| 
       4114 
4137 
     | 
    
         
             
            69a07b1  The resolve functionality in "test" is almost working...
         
     | 
| 
       4115 
4138 
     | 
    
         
             
            42d15fe  Adding note about removing mounts netinfo provider
         
     | 
| 
         @@ -4201,10 +4224,6 @@ f7d8350  Updating docs for 0.22.0 
     | 
|
| 
       4201 
4224 
     | 
    
         
             
            4ee6c97  Updated to version 0.22.0
         
     | 
| 
       4202 
4225 
     | 
    
         
             
            98ed0ae  Updated to version 0.22.0
         
     | 
| 
       4203 
4226 
     | 
    
         
             
            38cfa67  Updated to version 0.22.0
         
     | 
| 
       4204 
     | 
    
         
            -
             
     | 
| 
       4205 
     | 
    
         
            -
            0.22.0
         
     | 
| 
       4206 
     | 
    
         
            -
            ======
         
     | 
| 
       4207 
     | 
    
         
            -
            728d745  Adding release tag REL_0_22_0
         
     | 
| 
       4208 
4227 
     | 
    
         
             
            3446dd6  Last round of fixes before the next release
         
     | 
| 
       4209 
4228 
     | 
    
         
             
            954a285  Fixing puppet test task for older ruby versions
         
     | 
| 
       4210 
4229 
     | 
    
         
             
            7afa69c  Fixing rake test so it works with the new puppet loader
         
     | 
| 
         @@ -4383,10 +4402,6 @@ c3c5851  Fixing configuration storage -- there was a check being done that cause 
     | 
|
| 
       4383 
4402 
     | 
    
         
             
            60af8e2  Updated to version 0.20.1
         
     | 
| 
       4384 
4403 
     | 
    
         
             
            e313a26  Updated to version 0.20.1
         
     | 
| 
       4385 
4404 
     | 
    
         
             
            68d9e78  Updated to version 0.20.1
         
     | 
| 
       4386 
     | 
    
         
            -
             
     | 
| 
       4387 
     | 
    
         
            -
            0.20.1
         
     | 
| 
       4388 
     | 
    
         
            -
            ======
         
     | 
| 
       4389 
     | 
    
         
            -
            2feb9e8  Adding release tag REL_0_20_1
         
     | 
| 
       4390 
4405 
     | 
    
         
             
            7d46167  Updating changelog for 0.20.1
         
     | 
| 
       4391 
4406 
     | 
    
         
             
            7fa96cb  Another small fix, just for solaris
         
     | 
| 
       4392 
4407 
     | 
    
         
             
            db5d9d4  Another testing fix
         
     | 
| 
         @@ -4438,10 +4453,6 @@ e741b7b  Fixing some Class.to_s handling 
     | 
|
| 
       4438 
4453 
     | 
    
         
             
            71924ad  Updated to version 0.20.0
         
     | 
| 
       4439 
4454 
     | 
    
         
             
            a488dd9  Updated to version 0.20.0
         
     | 
| 
       4440 
4455 
     | 
    
         
             
            4688d93  Updated to version 0.20.0
         
     | 
| 
       4441 
     | 
    
         
            -
             
     | 
| 
       4442 
     | 
    
         
            -
            0.20.0
         
     | 
| 
       4443 
     | 
    
         
            -
            ======
         
     | 
| 
       4444 
     | 
    
         
            -
            7694bd9  Adding release tag
         
     | 
| 
       4445 
4456 
     | 
    
         
             
            f9f939e  Updating changelog for 0.20
         
     | 
| 
       4446 
4457 
     | 
    
         
             
            e3b4f23  Another round of bugfixing, including finding out that the tagmail report was leaving zombie processes lying around
         
     | 
| 
       4447 
4458 
     | 
    
         
             
            07f616b  A round of bug-fixing on OS X
         
     | 
| 
         @@ -4563,16 +4574,6 @@ f2ac4dc  Updating changelog for 0.19.3, and merging the version changes over. 
     | 
|
| 
       4563 
4574 
     | 
    
         
             
            8f9dcb5  Updated to version 0.19.2
         
     | 
| 
       4564 
4575 
     | 
    
         
             
            595d5ba  Updated to version 0.19.2
         
     | 
| 
       4565 
4576 
     | 
    
         
             
            6902f2d  Updated to version 0.19.2
         
     | 
| 
       4566 
     | 
    
         
            -
             
     | 
| 
       4567 
     | 
    
         
            -
            0.19.3
         
     | 
| 
       4568 
     | 
    
         
            -
            ======
         
     | 
| 
       4569 
     | 
    
         
            -
            bec795d  Adding release tag REL_0_19_3
         
     | 
| 
       4570 
     | 
    
         
            -
            0513ffa  Fixing problem with the hostname being removed when running locally.  The node_name setting was not checking that the client was set, and it is never set when running locally.
         
     | 
| 
       4571 
     | 
    
         
            -
            7726afc  Adding branch to fix the problem with hostnames getting nilled
         
     | 
| 
       4572 
     | 
    
         
            -
             
     | 
| 
       4573 
     | 
    
         
            -
            0.19.2
         
     | 
| 
       4574 
     | 
    
         
            -
            ======
         
     | 
| 
       4575 
     | 
    
         
            -
            ddb4c47  Adding release tag REL_0_19_2
         
     | 
| 
       4576 
4577 
     | 
    
         
             
            164c18f  As requested by Christian Warden, triggering an object now results in an event, which can result in further triggers.
         
     | 
| 
       4577 
4578 
     | 
    
         
             
            98004b2  Adding some error handling for when a non-existent report is asked for, and adding a bit more testing.
         
     | 
| 
       4578 
4579 
     | 
    
         
             
            a1e27bc  Adding trace information to autoload.rb
         
     | 
| 
         @@ -4617,10 +4618,6 @@ fd4ef3c  Better documentation around certificate revocation and mgmt 
     | 
|
| 
       4617 
4618 
     | 
    
         
             
            c8a6df0  Updated to version 0.19.1
         
     | 
| 
       4618 
4619 
     | 
    
         
             
            ee8b8c7  Updated to version 0.19.1
         
     | 
| 
       4619 
4620 
     | 
    
         
             
            6f85511  Updated to version 0.19.1
         
     | 
| 
       4620 
     | 
    
         
            -
             
     | 
| 
       4621 
     | 
    
         
            -
            0.19.1
         
     | 
| 
       4622 
     | 
    
         
            -
            ======
         
     | 
| 
       4623 
     | 
    
         
            -
            7e229a8  Adding release tag REL_0_19_2
         
     | 
| 
       4624 
4621 
     | 
    
         
             
            0e58f65  Updating changelog for 0.19.1
         
     | 
| 
       4625 
4622 
     | 
    
         
             
            4a3c8d1  Adding testing for the default? method, and fixing it to support arrays and returning false when no defaults are specified
         
     | 
| 
       4626 
4623 
     | 
    
         
             
            48992d7  Using the "trace" configuration parameter to determine whether a stack trace should be printed, rather than just using "debug".  I added the param a little while ago and was using it internally in Puppet::DevError, but I just now went through the whole configuration and switched to using it.
         
     | 
| 
         @@ -4662,10 +4659,6 @@ c651b19  Disable the sample fileserver module by default, otherwise users get sp 
     | 
|
| 
       4662 
4659 
     | 
    
         
             
            65bb635  Updated to version 0.19.0
         
     | 
| 
       4663 
4660 
     | 
    
         
             
            61e42e7  Updated to version 0.19.0
         
     | 
| 
       4664 
4661 
     | 
    
         
             
            12b219e  Updated to version 0.19.0
         
     | 
| 
       4665 
     | 
    
         
            -
             
     | 
| 
       4666 
     | 
    
         
            -
            0.19.0
         
     | 
| 
       4667 
     | 
    
         
            -
            ======
         
     | 
| 
       4668 
     | 
    
         
            -
            fbebcc5  Adding release tag REL_0_19_0
         
     | 
| 
       4669 
4662 
     | 
    
         
             
            e309b76  Modifying the provider base class so that it defines a method for every used command (e.g., you call "commands :rpm => 'rpm'", and it defines an "rpm" method.  I then pushed this throughout the package providers, which are the heaviest users of commands.
         
     | 
| 
       4670 
4663 
     | 
    
         
             
            c5ce953  Adding aptitude support, including a new util::package module that provides a method for package version sorting, and a couple of smaller bug fixes.  This fixes #237.
         
     | 
| 
       4671 
4664 
     | 
    
         
             
            2113eed  Adding hasrestart parameter to services
         
     | 
| 
         @@ -4783,10 +4776,6 @@ b2f1aa0  doc updates 
     | 
|
| 
       4783 
4776 
     | 
    
         
             
            b8bf113  Updated to version 0.18.4
         
     | 
| 
       4784 
4777 
     | 
    
         
             
            94cc68b  Updated to version 0.18.4
         
     | 
| 
       4785 
4778 
     | 
    
         
             
            ce95ee3  Updated to version 0.18.4
         
     | 
| 
       4786 
     | 
    
         
            -
             
     | 
| 
       4787 
     | 
    
         
            -
            0.18.4
         
     | 
| 
       4788 
     | 
    
         
            -
            ======
         
     | 
| 
       4789 
     | 
    
         
            -
            74a3b4d  Adding release tag REL_0_18_4
         
     | 
| 
       4790 
4779 
     | 
    
         
             
            f13c451  updating changelog for 0.18.4
         
     | 
| 
       4791 
4780 
     | 
    
         
             
            cdeccab  Another batch of bug fixes, this time focused on OS X patches.  Looks like I did not test on os x last time.
         
     | 
| 
       4792 
4781 
     | 
    
         
             
            b42eaee  First round of bugfixes in preparation for 0.18.4
         
     | 
| 
         @@ -4817,10 +4806,6 @@ e74b8af  fixing html markup 
     | 
|
| 
       4817 
4806 
     | 
    
         
             
            b23b797  Updated to version 0.18.3
         
     | 
| 
       4818 
4807 
     | 
    
         
             
            fe8ce26  Updated to version 0.18.3
         
     | 
| 
       4819 
4808 
     | 
    
         
             
            a984a90  Updated to version 0.18.3
         
     | 
| 
       4820 
     | 
    
         
            -
             
     | 
| 
       4821 
     | 
    
         
            -
            0.18.3
         
     | 
| 
       4822 
     | 
    
         
            -
            ======
         
     | 
| 
       4823 
     | 
    
         
            -
            04a99e7  Adding release tag REL_0_18_3
         
     | 
| 
       4824 
4809 
     | 
    
         
             
            8063ab1  Fixing filebucket server so that paths are not added multiple times
         
     | 
| 
       4825 
4810 
     | 
    
         
             
            1ab4594  Adding tests for previous config bugfixes, and updating changelog
         
     | 
| 
       4826 
4811 
     | 
    
         
             
            a6cc3e4  Fixing reports so that multiple host report directories can be created.  There was a config conflict before.
         
     | 
| 
         @@ -4850,10 +4835,6 @@ eff8d6e  Accepting the patch from #190. 
     | 
|
| 
       4850 
4835 
     | 
    
         
             
            bd9fd8d  Updated to version 0.18.2
         
     | 
| 
       4851 
4836 
     | 
    
         
             
            71036e7  Updated to version 0.18.2
         
     | 
| 
       4852 
4837 
     | 
    
         
             
            aa87963  Updated to version 0.18.2
         
     | 
| 
       4853 
     | 
    
         
            -
             
     | 
| 
       4854 
     | 
    
         
            -
            0.18.2
         
     | 
| 
       4855 
     | 
    
         
            -
            ======
         
     | 
| 
       4856 
     | 
    
         
            -
            3e5907d  Adding release tag REL_0_18_2
         
     | 
| 
       4857 
4838 
     | 
    
         
             
            afe84ec  small fixes towards 0.18.2
         
     | 
| 
       4858 
4839 
     | 
    
         
             
            e17f4ed  adding host information to reports and tagmail report
         
     | 
| 
       4859 
4840 
     | 
    
         
             
            1503b42  renaming tagmail config file
         
     | 
| 
         @@ -4884,10 +4865,6 @@ ea91896  changing the #!ruby lines to #!env ruby 
     | 
|
| 
       4884 
4865 
     | 
    
         
             
            d275489  Updated to version 0.18.1
         
     | 
| 
       4885 
4866 
     | 
    
         
             
            35ef37b  Updated to version 0.18.1
         
     | 
| 
       4886 
4867 
     | 
    
         
             
            427831c  Updated to version 0.18.1
         
     | 
| 
       4887 
     | 
    
         
            -
             
     | 
| 
       4888 
     | 
    
         
            -
            0.18.1
         
     | 
| 
       4889 
     | 
    
         
            -
            ======
         
     | 
| 
       4890 
     | 
    
         
            -
            1cc2712  Adding release tag REL_0_18_1
         
     | 
| 
       4891 
4868 
     | 
    
         
             
            7adafc6  For each type, adding a "new<type>" method to Puppet::Type, so instead of typing Puppet::Type.type(:file).create(...) you can now type Puppet::Type.newfile(...).
         
     | 
| 
       4892 
4869 
     | 
    
         
             
            e8c57ae  Cleaning up plugin handling a bit -- they can now be colon-separated paths, and I added a separate "plugindest" setting for determining where plugins are synchronized to.  The major feature I added, though, is that Puppet::Type now knows how to load plugins, and treats :pluginpath as a search path for plugins.
         
     | 
| 
       4893 
4870 
     | 
    
         
             
            d98ab11  Fixing zone tests
         
     | 
| 
         @@ -4937,11 +4914,6 @@ e841d8f  Adding test and fix for empty execs being ignored 
     | 
|
| 
       4937 
4914 
     | 
    
         
             
            0ab461b  Updated to version 0.18.0
         
     | 
| 
       4938 
4915 
     | 
    
         
             
            daac8cf  Updated to version 0.18.0
         
     | 
| 
       4939 
4916 
     | 
    
         
             
            8779dbe  Updated to version 0.18.0
         
     | 
| 
       4940 
     | 
    
         
            -
             
     | 
| 
       4941 
     | 
    
         
            -
            0.18.0
         
     | 
| 
       4942 
     | 
    
         
            -
            ======
         
     | 
| 
       4943 
     | 
    
         
            -
            4a5df83  Adding release tag REL_0_18_0
         
     | 
| 
       4944 
     | 
    
         
            -
            a6f9bf4  Adding release tag REL_0_18_0
         
     | 
| 
       4945 
4917 
     | 
    
         
             
            ae3dba9  updating changelog for 0.18.0
         
     | 
| 
       4946 
4918 
     | 
    
         
             
            ead6b17  updating documentation for sshkey
         
     | 
| 
       4947 
4919 
     | 
    
         
             
            20b0a6d  fixing transaction tests to just warn when the user is not in more than one group, rather than failing.
         
     | 
| 
         @@ -5003,10 +4975,6 @@ b08816b  Fixing #162.  Node names must now be comma-separated. 
     | 
|
| 
       5003 
4975 
     | 
    
         
             
            3ab4a89  Small fix to include puppetrun in /usr/bin
         
     | 
| 
       5004 
4976 
     | 
    
         
             
            62a0ff0  adding puppetrun to the red hat spec file
         
     | 
| 
       5005 
4977 
     | 
    
         
             
            fda013a  Updated to version 0.17.2
         
     | 
| 
       5006 
     | 
    
         
            -
             
     | 
| 
       5007 
     | 
    
         
            -
            0.17.2
         
     | 
| 
       5008 
     | 
    
         
            -
            ======
         
     | 
| 
       5009 
     | 
    
         
            -
            b742236  Adding release tag REL_0_17_2
         
     | 
| 
       5010 
4978 
     | 
    
         
             
            3c15a28  updating changelog for 0.17.2
         
     | 
| 
       5011 
4979 
     | 
    
         
             
            a08ca93  Fixing #138, all of it, I think.  Environment settings are now allowed, although all bets are off in terms of parsing existing environment settings in crontabs.
         
     | 
| 
       5012 
4980 
     | 
    
         
             
            69cf2fe  Adding a small fix to cron tabs; they will at least parse tabs that have env settings in them, although you still cannot, at this point, set them.
         
     | 
| 
         @@ -5016,10 +4984,6 @@ d55adda  First version of puppetrun.  It seems to mostly work, but I need to tes 
     | 
|
| 
       5016 
4984 
     | 
    
         
             
            b3ea53c  Adding a lot of structure to puppet.rb to make it easier to manage multiple objects in a single process, including making it easy to add threads.  Added some testing for all of that.
         
     | 
| 
       5017 
4985 
     | 
    
         
             
            93771b7  fixing user[:groups] management when the user is absent
         
     | 
| 
       5018 
4986 
     | 
    
         
             
            738698c  Updated to version 0.17.1
         
     | 
| 
       5019 
     | 
    
         
            -
             
     | 
| 
       5020 
     | 
    
         
            -
            0.17.1
         
     | 
| 
       5021 
     | 
    
         
            -
            ======
         
     | 
| 
       5022 
     | 
    
         
            -
            f028420  Adding release tag REL_0_17_1
         
     | 
| 
       5023 
4987 
     | 
    
         
             
            ed9adf5  updating changelog for 0.17.1 and 0.17.0
         
     | 
| 
       5024 
4988 
     | 
    
         
             
            9b5de11  Allowing empty files
         
     | 
| 
       5025 
4989 
     | 
    
         
             
            5382118  Fixing #146.  I think I mostly just fixed the error message; I do not think there was another bug there.
         
     | 
| 
         @@ -5027,10 +4991,6 @@ ed9adf5  updating changelog for 0.17.1 and 0.17.0 
     | 
|
| 
       5027 
4991 
     | 
    
         
             
            dc3a6d5  Making sure file recursion works for all valid inputs
         
     | 
| 
       5028 
4992 
     | 
    
         
             
            373afa3  updating version on spec file
         
     | 
| 
       5029 
4993 
     | 
    
         
             
            4296b02  Updated to version 0.17.0
         
     | 
| 
       5030 
     | 
    
         
            -
             
     | 
| 
       5031 
     | 
    
         
            -
            0.17.0
         
     | 
| 
       5032 
     | 
    
         
            -
            ======
         
     | 
| 
       5033 
     | 
    
         
            -
            559f4b0  Adding release tag REL_0_17_0
         
     | 
| 
       5034 
4994 
     | 
    
         
             
            3be0f95  Wrapping the host storage into a transaction.  It might have a slight performance improvement, but, ah, unlikely.
         
     | 
| 
       5035 
4995 
     | 
    
         
             
            9d6166e  adding a test to make sure that defaults get taken up by components
         
     | 
| 
       5036 
4996 
     | 
    
         
             
            a0bcf5a  Adding code to try for the rails gem if the library cannot be found normally, and adding some protections in case there are problems
         
     | 
| 
         @@ -5062,27 +5022,15 @@ e06c661  Small bug fixes 
     | 
|
| 
       5062 
5022 
     | 
    
         
             
            18de804  fixing log messages
         
     | 
| 
       5063 
5023 
     | 
    
         
             
            a7fadbe  fixing log messages
         
     | 
| 
       5064 
5024 
     | 
    
         
             
            43fdd89  Updated to version 0.16.5
         
     | 
| 
       5065 
     | 
    
         
            -
             
     | 
| 
       5066 
     | 
    
         
            -
            0.16.5
         
     | 
| 
       5067 
     | 
    
         
            -
            ======
         
     | 
| 
       5068 
     | 
    
         
            -
            054cc77  Adding release tag REL_0_16_5
         
     | 
| 
       5069 
5025 
     | 
    
         
             
            64a58e4  updating changelog for 0.16.5
         
     | 
| 
       5070 
5026 
     | 
    
         
             
            44f1579  Fixing a stupid bug i managed to introduce in 0.16.2 (probably) involving importing files with classes in them.  This is a better solution than what I had before the bug, anyway.  Also, some documentation fixes.
         
     | 
| 
       5071 
5027 
     | 
    
         
             
            a9df49d  Fixing some naming problems with crons, and adding appropriate tests
         
     | 
| 
       5072 
5028 
     | 
    
         
             
            e8c912d  Allowing dashes in class names, although grammar rules restrict it from working anywhere except node names or in tag().  They are valid in host names, and many companies have them in the host names; in fact, this fix is for a company with this exact problem -- they cannot use puppet with their nodes because all their hosts have dashes in the host names.
         
     | 
| 
       5073 
5029 
     | 
    
         
             
            37d2850  Switching to just using "preserve" for file copying in file#handlebackups
         
     | 
| 
       5074 
5030 
     | 
    
         
             
            8b0481c  Updated to version 0.16.4
         
     | 
| 
       5075 
     | 
    
         
            -
             
     | 
| 
       5076 
     | 
    
         
            -
            0.16.4
         
     | 
| 
       5077 
     | 
    
         
            -
            ======
         
     | 
| 
       5078 
     | 
    
         
            -
            66b8bfd  Adding release tag REL_0_16_4
         
     | 
| 
       5079 
5031 
     | 
    
         
             
            4b84ca9  updating changelog for 0.16.4
         
     | 
| 
       5080 
5032 
     | 
    
         
             
            b67a19b  Fixing #132, which involved creating a separate CA client and using it to retrieve the certificates.  There was more work to do because of the weird client/daemon/server heirarchy.
         
     | 
| 
       5081 
5033 
     | 
    
         
             
            a435d07  Updated to version 0.16.3
         
     | 
| 
       5082 
     | 
    
         
            -
             
     | 
| 
       5083 
     | 
    
         
            -
            0.16.3
         
     | 
| 
       5084 
     | 
    
         
            -
            ======
         
     | 
| 
       5085 
     | 
    
         
            -
            ab17248  Adding release tag REL_0_16_3
         
     | 
| 
       5086 
5034 
     | 
    
         
             
            3f08155  updating changelog
         
     | 
| 
       5087 
5035 
     | 
    
         
             
            2faa447  Bug fixes from OS X for 0.16.3
         
     | 
| 
       5088 
5036 
     | 
    
         
             
            5e246ab  Hopefully final bug fixes in preparation for 0.16.3
         
     | 
| 
         @@ -5098,17 +5046,9 @@ a1574a5  Fixing TransObject#to_type so that it does not modify the object being 
     | 
|
| 
       5098 
5046 
     | 
    
         
             
            bcfc469  Adding in all of the patches necessary to make a prototype rails interface to puppet nodes work.  The biggest change is that there is now a separate NetworkClient class for every Client subclass, because otherwise you get namespace collisions.  Most everything other change is a relatively minor patch.
         
     | 
| 
       5099 
5047 
     | 
    
         
             
            9539dbb  Adding in all of the patches necessary to make a prototype rails interface to puppet nodes work.  The biggest change is that there is now a separate NetworkClient class for every Client subclass, because otherwise you get namespace collisions.  Most everything other change is a relatively minor patch.
         
     | 
| 
       5100 
5048 
     | 
    
         
             
            9b627cd  Trying to track down the bugs reported this morning, so I added some more test cases.  I did find a bug in the filebuckets, fixed it, and added a test case.
         
     | 
| 
       5101 
     | 
    
         
            -
             
     | 
| 
       5102 
     | 
    
         
            -
            0.16.2
         
     | 
| 
       5103 
     | 
    
         
            -
            ======
         
     | 
| 
       5104 
     | 
    
         
            -
            13c91ea  Adding release tag REL_0_16_2
         
     | 
| 
       5105 
5049 
     | 
    
         
             
            003e897  updating changelog for 0.16.1 and 0.16.2
         
     | 
| 
       5106 
5050 
     | 
    
         
             
            a78bf1e  adding "clean" mode to puppetca
         
     | 
| 
       5107 
5051 
     | 
    
         
             
            bda8e52  This should have been in 0.16.1.  Moving the "setclass" statements around so that classes are set before a given class's code is evaluated, so it can be tested within the code, within node defs, components, or classes.
         
     | 
| 
       5108 
     | 
    
         
            -
             
     | 
| 
       5109 
     | 
    
         
            -
            0.16.1
         
     | 
| 
       5110 
     | 
    
         
            -
            ======
         
     | 
| 
       5111 
     | 
    
         
            -
            77bf69c  Adding release tag REL_0_16_1
         
     | 
| 
       5112 
5052 
     | 
    
         
             
            bff9463  Adding sum type to the retrieved sum if it is not already there.  This provides backwards compatibility for existing cache files.
         
     | 
| 
       5113 
5053 
     | 
    
         
             
            feff317  removing unnecessary debugging
         
     | 
| 
       5114 
5054 
     | 
    
         
             
            baa412c  Adding "defined" functino to puppet, so you can now test whether a given class or definition is defined.
         
     | 
| 
         @@ -5116,10 +5056,6 @@ baa412c  Adding "defined" functino to puppet, so you can now test whether a give 
     | 
|
| 
       5116 
5056 
     | 
    
         
             
            ccc4d95  Modifying non-existent-package test to make sure syncing fails, and modified ports package type to check the error output instead of the return code, because the portinstall command returns 0 even on failure.
         
     | 
| 
       5117 
5057 
     | 
    
         
             
            e64bd22  Fix ownership on server files (trac #122) Change ownership on /var/puppet
         
     | 
| 
       5118 
5058 
     | 
    
         
             
            9fe0b37  removing patch from red hat spec file
         
     | 
| 
       5119 
     | 
    
         
            -
             
     | 
| 
       5120 
     | 
    
         
            -
            0.16.0
         
     | 
| 
       5121 
     | 
    
         
            -
            ======
         
     | 
| 
       5122 
     | 
    
         
            -
            2492328  Adding release tag REL_0_16_0
         
     | 
| 
       5123 
5059 
     | 
    
         
             
            a0b4553  Final commit before 0.16.0
         
     | 
| 
       5124 
5060 
     | 
    
         
             
            63cdc6c  making corrections to pass tests on freebsd
         
     | 
| 
       5125 
5061 
     | 
    
         
             
            d9fd002  Go some work started on developing authorization, but I have made little progress.  I might wait on this for the next point release.
         
     | 
| 
         @@ -5157,10 +5093,6 @@ ae4b12e  Revamp the yumrepo type to deal with repositories defined anywhere in y 
     | 
|
| 
       5157 
5093 
     | 
    
         
             
            8df6e84  another small mount fix; this time, for stupid os x
         
     | 
| 
       5158 
5094 
     | 
    
         
             
            88dd992  committing version changes
         
     | 
| 
       5159 
5095 
     | 
    
         
             
            d10a638  Committing an important fix to mounts; since i am sure no one has downloaded 0.15.3, i am just going to rerelease 0.15.3 with this fix in it
         
     | 
| 
       5160 
     | 
    
         
            -
             
     | 
| 
       5161 
     | 
    
         
            -
            0.15.3
         
     | 
| 
       5162 
     | 
    
         
            -
            ======
         
     | 
| 
       5163 
     | 
    
         
            -
            abf09dc  Adding release tag REL_0_15_3
         
     | 
| 
       5164 
5096 
     | 
    
         
             
            83d5236  updating changelog for 0.15.3; I need these exec fixes for my client
         
     | 
| 
       5165 
5097 
     | 
    
         
             
            e5be7d3  Adding autoloading for types and service types, also.
         
     | 
| 
       5166 
5098 
     | 
    
         
             
            fcce820  Okay, last one, hopefully.  Modifying checks to support arrays.
         
     | 
| 
         @@ -5170,10 +5102,6 @@ fcce820  Okay, last one, hopefully.  Modifying checks to support arrays. 
     | 
|
| 
       5170 
5102 
     | 
    
         
             
            1e4abae  moving cwd existence check into "sync" instead of "validate"
         
     | 
| 
       5171 
5103 
     | 
    
         
             
            7dae24f  Fixing a small bug in type.rb that ignored false values (instead of nil values), another small bug in value setting that resulted in the file and line appearing twice in errors, and added validation to all of the checks in :exec (along with testing for all of it).
         
     | 
| 
       5172 
5104 
     | 
    
         
             
            b0edb35  removing patch from spec file
         
     | 
| 
       5173 
     | 
    
         
            -
             
     | 
| 
       5174 
     | 
    
         
            -
            0.15.2
         
     | 
| 
       5175 
     | 
    
         
            -
            ======
         
     | 
| 
       5176 
     | 
    
         
            -
            feab8d9  Adding release tag REL_0_15_2
         
     | 
| 
       5177 
5105 
     | 
    
         
             
            122cf58  updating changelog in preparation for 0.15.2
         
     | 
| 
       5178 
5106 
     | 
    
         
             
            013cfd2  Adding darwinport type.
         
     | 
| 
       5179 
5107 
     | 
    
         
             
            9697354  differentiating openbsd from freebsd, adding freebsd, and autoloading package types instead of manually loading them
         
     | 
| 
         @@ -5217,10 +5145,6 @@ a9fdf9d  Disbale running puppetmaster as puppet until we've sorted out which fil 
     | 
|
| 
       5217 
5145 
     | 
    
         
             
            791e4da  Committing support for group membership management.  Currently only works on Linuxes and other OSes that use "useradd" that support -G.
         
     | 
| 
       5218 
5146 
     | 
    
         
             
            932fd03  commiting package test fix that i thought i committed ages ago
         
     | 
| 
       5219 
5147 
     | 
    
         
             
            28602a6  Simplified as yum install can be used for both install and update
         
     | 
| 
       5220 
     | 
    
         
            -
             
     | 
| 
       5221 
     | 
    
         
            -
            0.15.1
         
     | 
| 
       5222 
     | 
    
         
            -
            ======
         
     | 
| 
       5223 
     | 
    
         
            -
            437ee64  Adding release tag REL_0_15_1
         
     | 
| 
       5224 
5148 
     | 
    
         
             
            95b762b  updating changelog for 0.15.1
         
     | 
| 
       5225 
5149 
     | 
    
         
             
            fc98ab0  Fixing #100.  I just added a bit of a hack to configuration parsing -- if a group is specified in a section that matches the name of the process, then it is assumed to be the group that the process should run as.  The problem is that we are reusing the term "group" here for both the run-group and the file-group.  Oh well.
         
     | 
| 
       5226 
5150 
     | 
    
         
             
            5dcf303  Using differents commands with yum depending on whether the package is currently installed or not.
         
     | 
| 
         @@ -5236,10 +5160,6 @@ fc68910  removing dos EOL chars 
     | 
|
| 
       5236 
5160 
     | 
    
         
             
            c74fd81  Committing the EPM support.  I am in the process of moving this to a common library that all of my projects can use.
         
     | 
| 
       5237 
5161 
     | 
    
         
             
            271a8d2  Adding EPM package building.
         
     | 
| 
       5238 
5162 
     | 
    
         
             
            805b32b  Updated to version 0.15.0
         
     | 
| 
       5239 
     | 
    
         
            -
             
     | 
| 
       5240 
     | 
    
         
            -
            0.15.0
         
     | 
| 
       5241 
     | 
    
         
            -
            ======
         
     | 
| 
       5242 
     | 
    
         
            -
            1409cd6  Adding release tag REL_0_15_0
         
     | 
| 
       5243 
5163 
     | 
    
         
             
            92e3c1e  Updating changelog for 0.15.0.
         
     | 
| 
       5244 
5164 
     | 
    
         
             
            ec7d46e  fixing small bug in the test code when there are no packages to test
         
     | 
| 
       5245 
5165 
     | 
    
         
             
            f851be7  Adding upgrade ability to sun packages.  Currently it removes the old package and installs the new one.
         
     | 
| 
         @@ -5269,19 +5189,11 @@ b6d829b  Fixing #95.  I had to redesign how events were triggered; the transacti 
     | 
|
| 
       5269 
5189 
     | 
    
         
             
            7756f9a  Fixing #97.  I was wrong about the object type I had, so I was calling "type" with no arguments, which was causing the bug.
         
     | 
| 
       5270 
5190 
     | 
    
         
             
            2faff5d  lowering the log output for nonexistent files
         
     | 
| 
       5271 
5191 
     | 
    
         
             
            eb68633  Updated to version 0.14.1
         
     | 
| 
       5272 
     | 
    
         
            -
             
     | 
| 
       5273 
     | 
    
         
            -
            0.14.1
         
     | 
| 
       5274 
     | 
    
         
            -
            ======
         
     | 
| 
       5275 
     | 
    
         
            -
            ad0fa4b  Adding release tag REL_0_14_1
         
     | 
| 
       5276 
5192 
     | 
    
         
             
            cee0882  updating changelog for 0.14.1
         
     | 
| 
       5277 
5193 
     | 
    
         
             
            2351cd7  making case statements not create a new scope
         
     | 
| 
       5278 
5194 
     | 
    
         
             
            54fcdbd  fixing some more logging issues
         
     | 
| 
       5279 
5195 
     | 
    
         
             
            0549d03  Making some logging changes, and fixing a small bug in group management on missing files
         
     | 
| 
       5280 
5196 
     | 
    
         
             
            72d747b  Updated to version 0.14.0
         
     | 
| 
       5281 
     | 
    
         
            -
             
     | 
| 
       5282 
     | 
    
         
            -
            0.14.0
         
     | 
| 
       5283 
     | 
    
         
            -
            ======
         
     | 
| 
       5284 
     | 
    
         
            -
            783735c  Adding release tag REL_0_14_0
         
     | 
| 
       5285 
5197 
     | 
    
         
             
            b76004a  Fixing yum listing bug, and caching the "latest" value so it is not asked for so many times; this fixes #90.
         
     | 
| 
       5286 
5198 
     | 
    
         
             
            3c07deb  Committing the last changes, for now, to handling links.  You still cannot copy remote links, but you can either ignore or follow them.  I do not think we will be able to copy remote links until I have merged symlinks and files to be the same object type again.
         
     | 
| 
       5287 
5199 
     | 
    
         
             
            e9e88b0  Adding "links" parameter to files, and adding support for following or ignoring links to all of the states it can matter to.  I still need to modify "source" so that it behaves correctly when managing links.
         
     | 
| 
         @@ -5298,10 +5210,6 @@ f2ea9b7  Supporting variables as the test value in both case statements and sele 
     | 
|
| 
       5298 
5210 
     | 
    
         
             
            aae9b2a  Definitions now always create their own context, which means that they cannot override elements in the containing scopes.
         
     | 
| 
       5299 
5211 
     | 
    
         
             
            451ba6d  upgrading to warning the message about using a cached copy
         
     | 
| 
       5300 
5212 
     | 
    
         
             
            faffd69  Updated to version 0.13.6
         
     | 
| 
       5301 
     | 
    
         
            -
             
     | 
| 
       5302 
     | 
    
         
            -
            0.13.6
         
     | 
| 
       5303 
     | 
    
         
            -
            ======
         
     | 
| 
       5304 
     | 
    
         
            -
            25614df  Adding release tag REL_0_13_6
         
     | 
| 
       5305 
5213 
     | 
    
         
             
            caa7f48  updating changelog for 0.13.6
         
     | 
| 
       5306 
5214 
     | 
    
         
             
            343dd08  Fixing tests so they do not chmod /dev/null to 640 (stupid tests).
         
     | 
| 
       5307 
5215 
     | 
    
         
             
            1a93c82  Fixing #68.  After tons and tons and tons of work, everything successfully configures itself, and the --genmanifest argument should actually work.  User and group creation will not necessarily work everywhere (in particular, Puppet uses dependencies to create the group first, but Fedora complains on user creation if the group already exists), but file and directory creation should.  The only downside is that there is a decent amount of extra information printed on daemon startup, as the daemon checks its config; this could maybe be seen as a bonus, though, I guess.
         
     | 
| 
         @@ -5330,20 +5238,12 @@ b119a72  Fixing output when user/group are not found 
     | 
|
| 
       5330 
5238 
     | 
    
         
             
            043fc33  adding commas to each line
         
     | 
| 
       5331 
5239 
     | 
    
         
             
            d06cd3f  removing the initial syslog dest setting
         
     | 
| 
       5332 
5240 
     | 
    
         
             
            f6ca82b  Updated to version 0.13.5
         
     | 
| 
       5333 
     | 
    
         
            -
             
     | 
| 
       5334 
     | 
    
         
            -
            0.13.5
         
     | 
| 
       5335 
     | 
    
         
            -
            ======
         
     | 
| 
       5336 
     | 
    
         
            -
            7ec2f82  Adding release tag REL_0_13_5
         
     | 
| 
       5337 
5241 
     | 
    
         
             
            85e4d31  adding changelog for 0.13.5
         
     | 
| 
       5338 
5242 
     | 
    
         
             
            2dffbee  Adding redhat service type, to support enabling and disabling a service
         
     | 
| 
       5339 
5243 
     | 
    
         
             
            7e5cc76  Fixing package types so you can specify the package type manually in a manifest
         
     | 
| 
       5340 
5244 
     | 
    
         
             
            7806618  removing extra error statement
         
     | 
| 
       5341 
5245 
     | 
    
         
             
            6e26a73  adding passwd converter
         
     | 
| 
       5342 
5246 
     | 
    
         
             
            3aff15e  Updated to version 0.13.4
         
     | 
| 
       5343 
     | 
    
         
            -
             
     | 
| 
       5344 
     | 
    
         
            -
            0.13.4
         
     | 
| 
       5345 
     | 
    
         
            -
            ======
         
     | 
| 
       5346 
     | 
    
         
            -
            d0b3f6c  Adding release tag REL_0_13_4
         
     | 
| 
       5347 
5247 
     | 
    
         
             
            1f05ad0  updating changelog for 0.13.4
         
     | 
| 
       5348 
5248 
     | 
    
         
             
            cfb0e36  updates
         
     | 
| 
       5349 
5249 
     | 
    
         
             
            89856ec  Adding a bit more logging
         
     | 
| 
         @@ -5360,10 +5260,6 @@ beef01c  Properly figure out when updates are available. Previously, packages wo 
     | 
|
| 
       5360 
5260 
     | 
    
         
             
            5f4335f  Adding logoutput parameter to :exec
         
     | 
| 
       5361 
5261 
     | 
    
         
             
            89702d8  Fixing symbolic naming bug where symbolic names were being ignored in some cases
         
     | 
| 
       5362 
5262 
     | 
    
         
             
            7d15fe1  Updated to version 0.13.2
         
     | 
| 
       5363 
     | 
    
         
            -
             
     | 
| 
       5364 
     | 
    
         
            -
            0.13.2
         
     | 
| 
       5365 
     | 
    
         
            -
            ======
         
     | 
| 
       5366 
     | 
    
         
            -
            d0bbab5  Adding release tag REL_0_13_2
         
     | 
| 
       5367 
5263 
     | 
    
         
             
            037b7ac  Changed the parsedtype definition of exists(), and fixed a few smaller bugs.  Last code commit before 0.13.2
         
     | 
| 
       5368 
5264 
     | 
    
         
             
            6fe01ce  Tracked down a few other bugs; everything now passes on debian in preparation for 0.13.2
         
     | 
| 
       5369 
5265 
     | 
    
         
             
            8602932  Changing "answerfile" to "adminfile", adding "responsefile", and autorequiring both.
         
     | 
| 
         @@ -5378,10 +5274,6 @@ f098485  Correcting some path problems with symlink, and changing "target" state 
     | 
|
| 
       5378 
5274 
     | 
    
         
             
            3f15cb8  Fixing :target reference in pfile.rb
         
     | 
| 
       5379 
5275 
     | 
    
         
             
            9508bd0  Correcting some path problems with symlink, and changing "target" state to "ensure"
         
     | 
| 
       5380 
5276 
     | 
    
         
             
            64eafa8  Updated to version 0.13.1
         
     | 
| 
       5381 
     | 
    
         
            -
             
     | 
| 
       5382 
     | 
    
         
            -
            0.13.1
         
     | 
| 
       5383 
     | 
    
         
            -
            ======
         
     | 
| 
       5384 
     | 
    
         
            -
            ac8f3ae  Adding release tag REL_0_13_1
         
     | 
| 
       5385 
5277 
     | 
    
         
             
            a456c4d  updating alias docs to pass ReST checks
         
     | 
| 
       5386 
5278 
     | 
    
         
             
            1a05ed2  updating changelog and docs for :alias
         
     | 
| 
       5387 
5279 
     | 
    
         
             
            89d37f6  Fixing some problems with cron tab management, and creating Puppet::Util.{u,g}id methods.
         
     | 
| 
         @@ -5392,10 +5284,6 @@ b13b5ed  Set the Release tag in the spec file to 1 when the version is changed 
     | 
|
| 
       5392 
5284 
     | 
    
         
             
            8c02ffd  Adapt specfile to the fact that puppetmaster now automatically runs as user puppet. Add default config files that send logs to /var/log/puppet.
         
     | 
| 
       5393 
5285 
     | 
    
         
             
            d629a80  Fix version in last changelog entry (makes rpmlint happy)
         
     | 
| 
       5394 
5286 
     | 
    
         
             
            44071d0  Updated to version 0.13.0
         
     | 
| 
       5395 
     | 
    
         
            -
             
     | 
| 
       5396 
     | 
    
         
            -
            0.13.0
         
     | 
| 
       5397 
     | 
    
         
            -
            ======
         
     | 
| 
       5398 
     | 
    
         
            -
            4751fce  Adding release tag REL_0_13_0
         
     | 
| 
       5399 
5287 
     | 
    
         
             
            2cb5cb3  Updating changelog for 0.13.0
         
     | 
| 
       5400 
5288 
     | 
    
         
             
            387db24  Adding answerfile support to sun pkgs.
         
     | 
| 
       5401 
5289 
     | 
    
         
             
            2ce061a  adding some documentation
         
     | 
| 
         @@ -5432,10 +5320,6 @@ d5af359  Rewrote client init script since puppetd is now a proper demon. 
     | 
|
| 
       5432 
5320 
     | 
    
         
             
            96b761b  Fixing waitforcert so that the client can actually add the certs once it receives them
         
     | 
| 
       5433 
5321 
     | 
    
         
             
            c7f9942  Adding release tag REL_0_12_0
         
     | 
| 
       5434 
5322 
     | 
    
         
             
            cf82cfa  Updated to version 0.12.0
         
     | 
| 
       5435 
     | 
    
         
            -
             
     | 
| 
       5436 
     | 
    
         
            -
            0.12.0
         
     | 
| 
       5437 
     | 
    
         
            -
            ======
         
     | 
| 
       5438 
     | 
    
         
            -
            2c35151  Adding 0.12.0 release tag
         
     | 
| 
       5439 
5323 
     | 
    
         
             
            282cfcf  Updated to version 0.12.0
         
     | 
| 
       5440 
5324 
     | 
    
         
             
            1186069  Small mods to the packaging stuff
         
     | 
| 
       5441 
5325 
     | 
    
         
             
            87904d3  RPM release is almost entirely there, it just needs to be integrated into release management
         
     | 
| 
         @@ -5445,26 +5329,14 @@ ae2575b  Adding the event-loop stuff to the repository and switching to using it 
     | 
|
| 
       5445 
5329 
     | 
    
         
             
            258114d  Modifying docs, and adding scheduling hooks
         
     | 
| 
       5446 
5330 
     | 
    
         
             
            0cb51f3  Fixing a small checksumming bug, reorganizing the client stuff a bit, and adding freshness checking for the configuration, so the config is recompiled every time nor is it downloaded unless it has been recompiled
         
     | 
| 
       5447 
5331 
     | 
    
         
             
            f49b103  Updated to version 0.11.2
         
     | 
| 
       5448 
     | 
    
         
            -
             
     | 
| 
       5449 
     | 
    
         
            -
            0.11.2
         
     | 
| 
       5450 
     | 
    
         
            -
            ======
         
     | 
| 
       5451 
     | 
    
         
            -
            36f6e05  Adding release tag REL_0_11_2
         
     | 
| 
       5452 
5332 
     | 
    
         
             
            c372a7d  modding changelog for 0.11.2
         
     | 
| 
       5453 
5333 
     | 
    
         
             
            6bab167  Made lots of small changes, mostly to help usability but also fixed a couple of key bugs
         
     | 
| 
       5454 
5334 
     | 
    
         
             
            ed39be9  Fixing most types to allow no statements
         
     | 
| 
       5455 
5335 
     | 
    
         
             
            3d458ef  Updated to version 0.11.1
         
     | 
| 
       5456 
     | 
    
         
            -
             
     | 
| 
       5457 
     | 
    
         
            -
            0.11.1
         
     | 
| 
       5458 
     | 
    
         
            -
            ======
         
     | 
| 
       5459 
     | 
    
         
            -
            4bbb952  Adding release tag REL_0_11_1
         
     | 
| 
       5460 
5336 
     | 
    
         
             
            c3df525  modifying changelog for 0.11.1
         
     | 
| 
       5461 
5337 
     | 
    
         
             
            060b8bd  Adding openbsd packaging support
         
     | 
| 
       5462 
5338 
     | 
    
         
             
            ada3aee  Fixing problems where objects were passing @parameters[:param] objects, instead of specifically retrieving the value
         
     | 
| 
       5463 
5339 
     | 
    
         
             
            f36c7d1  Updated to version 0.11.0
         
     | 
| 
       5464 
     | 
    
         
            -
             
     | 
| 
       5465 
     | 
    
         
            -
            0.11.0
         
     | 
| 
       5466 
     | 
    
         
            -
            ======
         
     | 
| 
       5467 
     | 
    
         
            -
            1d2095b  Adding release tag REL_0_11_0
         
     | 
| 
       5468 
5340 
     | 
    
         
             
            3700b37  Adding an "ensure" state where appropriate, and significantly reworking the builtin docs.
         
     | 
| 
       5469 
5341 
     | 
    
         
             
            92a780a  Added "ensure" state to some classes, and added infrastructure for it to work elsewhere.
         
     | 
| 
       5470 
5342 
     | 
    
         
             
            83906a2  Adding sshkey class plus tests, and adding "aggregatable" methods to type.rb
         
     | 
| 
         @@ -5485,10 +5357,6 @@ f420135  Converting transport format to YAML instead of Marshal, and caching the 
     | 
|
| 
       5485 
5357 
     | 
    
         
             
            c5782df  Adding "content" state to files, and string interpolation handles escaped whitespace characters.
         
     | 
| 
       5486 
5358 
     | 
    
         
             
            b0ea70d  Adding 0.10.2 stuff
         
     | 
| 
       5487 
5359 
     | 
    
         
             
            6b6c49b  Updated to version 0.10.2
         
     | 
| 
       5488 
     | 
    
         
            -
             
     | 
| 
       5489 
     | 
    
         
            -
            0.10.2
         
     | 
| 
       5490 
     | 
    
         
            -
            ======
         
     | 
| 
       5491 
     | 
    
         
            -
            f7211e3  Adding release tag REL_0_10_2
         
     | 
| 
       5492 
5360 
     | 
    
         
             
            1cf05ff  Services now work at least somewhat on solaris 10, and service testing is pretty different.
         
     | 
| 
       5493 
5361 
     | 
    
         
             
            4c4f530  Fixing dependencies to not depend on file order.  Added Puppet::Type.{finalize,mkdepends,builddepends}
         
     | 
| 
       5494 
5362 
     | 
    
         
             
            21410a2  Fixing documentation generation, and fixing aliasing so that objects can safely be aliased to themselves
         
     | 
| 
         @@ -5497,10 +5365,6 @@ f7211e3  Adding release tag REL_0_10_2 
     | 
|
| 
       5497 
5365 
     | 
    
         
             
            97fb6c9  Adding generic autorequire mechanism, and thus removing it from exec
         
     | 
| 
       5498 
5366 
     | 
    
         
             
            11b5463  Adding a requires? method to types, fixed the bug where exec fail when Puppet is downloading the script to execute, and modified "exec" to autorequire any managed scripts
         
     | 
| 
       5499 
5367 
     | 
    
         
             
            932b783  Updated to version 0.10.1
         
     | 
| 
       5500 
     | 
    
         
            -
             
     | 
| 
       5501 
     | 
    
         
            -
            0.10.1
         
     | 
| 
       5502 
     | 
    
         
            -
            ======
         
     | 
| 
       5503 
     | 
    
         
            -
            dc012b1  adding 0.10.1 release tag
         
     | 
| 
       5504 
5368 
     | 
    
         
             
            854f16b  modifying changelog for 0.10.1
         
     | 
| 
       5505 
5369 
     | 
    
         
             
            89d0050  Adding Sun support and fixing the last remaining bugs related to the daemon changes i just made
         
     | 
| 
       5506 
5370 
     | 
    
         
             
            45ac512  Supporting puppetmasterd running as a non-root user, and doing some basic message cleanup
         
     | 
| 
         @@ -5509,10 +5373,6 @@ dc012b1  adding 0.10.1 release tag 
     | 
|
| 
       5509 
5373 
     | 
    
         
             
            e5ac196  Adding some consistencies to the executable tests.  All exe tests now pass on OpenBSD, although the only real problem was that ruby was in /usr/local/bin.
         
     | 
| 
       5510 
5374 
     | 
    
         
             
            dccafc7  Updating Puppet to work with the new Facter
         
     | 
| 
       5511 
5375 
     | 
    
         
             
            b7974b5  Updated to version 0.10.0
         
     | 
| 
       5512 
     | 
    
         
            -
             
     | 
| 
       5513 
     | 
    
         
            -
            0.10.0
         
     | 
| 
       5514 
     | 
    
         
            -
            ======
         
     | 
| 
       5515 
     | 
    
         
            -
            8458a0d  Adding 0.10.0 release tag
         
     | 
| 
       5516 
5376 
     | 
    
         
             
            48031dd  Describing 0.10.0 changes
         
     | 
| 
       5517 
5377 
     | 
    
         
             
            48ba030  Modifying hosttest
         
     | 
| 
       5518 
5378 
     | 
    
         
             
            f00a7db  All tests pass now, although the lack of service support on os x means that i have now disabled services on it
         
     | 
| 
         @@ -5532,10 +5392,6 @@ e611f2c  adding some better readme stuff 
     | 
|
| 
       5532 
5392 
     | 
    
         
             
            b532a30  adding things to the change log, and modifying the order of the steps
         
     | 
| 
       5533 
5393 
     | 
    
         
             
            584652c  Disabling most documentation generation except for the API docs, and wrapping the StatusServer in the xmlrpc check
         
     | 
| 
       5534 
5394 
     | 
    
         
             
            0e0fdac  Updated to version 0.9.3
         
     | 
| 
       5535 
     | 
    
         
            -
             
     | 
| 
       5536 
     | 
    
         
            -
            0.9.3
         
     | 
| 
       5537 
     | 
    
         
            -
            =====
         
     | 
| 
       5538 
     | 
    
         
            -
            d4a9f3e  Adding release tag
         
     | 
| 
       5539 
5395 
     | 
    
         
             
            e2e2fb3  some updates to the typegen stuff, even though i may still not use it
         
     | 
| 
       5540 
5396 
     | 
    
         
             
            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
         
     | 
| 
       5541 
5397 
     | 
    
         
             
            592c24d  adding some comments
         
     |