Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Adding a --print option to puppetca that just prints the full-text version of a | Luke Kanies | 2007-12-19 | 1 | -5/+50 | |
| | | | | | | | | | | | | certificate, and --verify, which uses the external openssl command to verify the cert against the CA cert (I could not find an option to the builtin Ruby libraries to do this). | |||||
* | | Removing the ability to disable http-keep alive, | Luke Kanies | 2007-12-19 | 4 | -24/+16 | |
| | | | | | | | | since it didn't work and is now unnecessary. | |||||
* | | Entirely refactoring http keep-alive. There's now | Luke Kanies | 2007-12-19 | 13 | -281/+372 | |
| | | | | | | | | | | | | | | | | a central module responsible for managing the http pool (Puppet::Network::HttpPool), and it also handles setting certificate information. This gets rid of what were otherwise long chains of method calls, and it makes the code paths much clearer. | |||||
* | | Merge branch '0.24.x' of ssh://reductivelabs.com/opt/rl/git/puppet into 0.24.x | Luke Kanies | 2007-12-18 | 2 | -7/+31 | |
|\| | ||||||
| * | Uninstalling packages through 'ensure => absent' works again for the rpm and ↵ | David Lutterkort | 2007-12-17 | 1 | -5/+13 | |
| | | | | | | | | | | | | | | | | | | yum providers. Before, 'rpm -e' was called without a package name. The code now makes sure that 'rpm -e' gets exactly one package to uninstall on each invocation, since rpm gets grumpy otherwise (besides passing the correct package NVR, of course). | |||||
| * | Merge branch '0.24.x' of git://reductivelabs.com/puppet into 0.24.x | David Lutterkort | 2007-12-17 | 4 | -12/+58 | |
| |\ | ||||||
| * | | Updated for 0.24.0-2 | David Lutterkort | 2007-12-17 | 1 | -1/+4 | |
| | | | ||||||
| * | | Updated for 0.24.0 | David Lutterkort | 2007-12-17 | 1 | -1/+14 | |
| | | | ||||||
* | | | Fixing #967 -- relationships now work when running 0.23.x clients | Luke Kanies | 2007-12-18 | 4 | -8/+23 | |
| | | | | | | | | | | | | against 0.24.0 servers. | |||||
* | | | Fixing some tests that were failing with the recent ruby that has | Luke Kanies | 2007-12-18 | 4 | -0/+10 | |
| |/ |/| | | | | | ssl issues. | |||||
* | | Fixing #961 -- closing existing, open connections when | Luke Kanies | 2007-12-17 | 4 | -12/+58 | |
|/ | | | | | a new connection is requested, and closing all connections at the end of each run. | |||||
* | Updating changelog to reflect the fact that we no | Luke Kanies | 2007-12-17 | 1 | -0/+2 | |
| | | | | longer warn about explicit plugin mounts. | |||||
* | Remove the warning about an explicit plugins mount. | Luke Kanies | 2007-12-17 | 1 | -4/+0 | |
| | | | | | | | | While module specific plugins are a good thing, explicit plugins that don't fit into modules should be allowed or at least not deprecated until it's proven that they are not useful to anyone. (Patch by Chris MacLeod.) | |||||
* | Fixing the Rakefile to include the yumhelper.py file in | Luke Kanies | 2007-12-17 | 1 | -0/+1 | |
| | | | | the file list. | |||||
* | Updated to version 0.24.0 | Luke Kanies | 2007-12-13 | 1 | -1/+1 | |
| | ||||||
* | Updated to version 0.24.0 | Luke Kanies | 2007-12-13 | 1 | -1/+1 | |
| | ||||||
* | Adding changelog update for misspiggy/0.24.0 | Luke Kanies | 2007-12-13 | 1 | -0/+1 | |
| | ||||||
* | Merge branch 'master' of ssh://reductivelabs.com/opt/rl/git/puppet | Luke Kanies | 2007-12-12 | 1 | -1/+1 | |
|\ | ||||||
| * | Hopefully finally fixing #959. Loading the stored cache | Luke Kanies | 2007-12-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | resulted in the resource duplication, based on how the settings are used, so I added a test to only use those settings if the directories do not exist. This isn't a great fix, but it will suffice until I can kill these resource conflicts once and for all. | |||||
* | | Fixing the webrick test to provide a correct host | Luke Kanies | 2007-12-12 | 1 | -1/+1 | |
| | | | | | | | | name so the stupid ssl checks pass during the test. | |||||
* | | Changing the statefile to only being managed by clients, | Luke Kanies | 2007-12-12 | 1 | -7/+7 | |
|/ | | | | not by puppetmasterd. | |||||
* | This should be the last fix for exported resources. | Luke Kanies | 2007-12-11 | 2 | -0/+23 | |
| | | | | | | Hosts were keeping the export bit on all resources, even when they'd collected another host's resources, which caused a duplicate copy that was still exported. | |||||
* | Not using the main section when running the store report, since it is ↵ | Luke Kanies | 2007-12-11 | 1 | -1/+1 | |
| | | | | unneeded and can cause conflicts within puppetmasterd | |||||
* | Removing extraneous debugging from the schedule resource type. | Luke Kanies | 2007-12-11 | 1 | -1/+0 | |
| | ||||||
* | Renaming 'configuration' to 'catalog', fixing #954. | Luke Kanies | 2007-12-11 | 69 | -552/+552 | |
| | ||||||
* | Renaming the 'null' terminus type to 'plain', as | Luke Kanies | 2007-12-11 | 7 | -29/+30 | |
| | | | | requested in #960. | |||||
* | Copying the fact-loading code from the network client to | Luke Kanies | 2007-12-11 | 2 | -0/+53 | |
| | | | | | the Facter terminus until I have a better solution. This problem was discovered becomes of #958. | |||||
* | Merge branch 'master' of ssh://reductivelabs.com/opt/rl/git/puppet | Luke Kanies | 2007-12-11 | 5 | -10/+23 | |
|\ | ||||||
| * | Adding what is hopefully the last commit for #896. Here's the | Luke Kanies | 2007-12-11 | 4 | -6/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | changelog: Modifying the behaviour of the certdnsnames setting. It now defaults to an empty string, and will only be used if it is set to something else. If it is set, then the host's FQDN will also be added as an alias. The default behaviour is now to add 'puppet' and 'puppet.$domain' as DNS aliases when the name for the cert being signed is equal to the signing machine's name, which will only be the case for CA servers. This should result in servers always having the alias set up and no one else, but you can still override the aliases if you want. | |||||
| * | Removing the 'addpath' commands from the freebsd service | Luke Kanies | 2007-12-11 | 1 | -4/+0 | |
| | | | | | | | | provider, since it's no longer needed or even valid. | |||||
* | | Applying patch by whaymond to fix #955. | Luke Kanies | 2007-12-11 | 1 | -1/+1 | |
|/ | ||||||
* | Merge commit 'davids-bugfixes/rest/fix-plugins-mount' | Luke Kanies | 2007-12-11 | 1 | -43/+22 | |
|\ | ||||||
| * | simplify PluginsMount | David Schmitt | 2007-12-03 | 1 | -43/+22 | |
| | | ||||||
* | | Removing the recently-commited paludis provider, | Luke Kanies | 2007-12-11 | 1 | -106/+0 | |
| | | | | | | | | because it breaks autoloading as indicated in #956. | |||||
* | | Applying patch by josb in #884 to provide pattern | Luke Kanies | 2007-12-11 | 2 | -5/+67 | |
| | | | | | | | | matching in the tidy type. | |||||
* | | Applying patch by raj in #881. | Luke Kanies | 2007-12-11 | 1 | -1/+1 | |
| | | ||||||
* | | Applying patch for portage package support from thansen | Luke Kanies | 2007-12-11 | 1 | -4/+4 | |
| | | | | | | | | in #895. | |||||
* | | Replacing freebsd service provider with the one | Luke Kanies | 2007-12-11 | 1 | -23/+32 | |
| | | | | | | | | provided by raj in #880. | |||||
* | | Adding paludis package support as provided by KillerFox | Luke Kanies | 2007-12-11 | 1 | -0/+106 | |
| | | | | | | | | in #741. | |||||
* | | Fixing #937 -- I had not ported the dot methods at all, | Luke Kanies | 2007-12-11 | 2 | -7/+9 | |
| | | | | | | | | and I had to make a few small changes to make them work. | |||||
* | | Fixing #946. | Luke Kanies | 2007-12-10 | 5 | -34/+24 | |
| | | ||||||
* | | Fixing some further failing tests resulting from the fix for | Luke Kanies | 2007-12-10 | 1 | -13/+11 | |
| | | ||||||
* | | Adding an Indirection reference, along with the work | Luke Kanies | 2007-12-10 | 15 | -16/+101 | |
| | | | | | | | | necessary to support it. | |||||
* | | Updating the changelog with external node info. | Luke Kanies | 2007-12-10 | 1 | -0/+4 | |
| | | ||||||
* | | Fixing #951 -- external nodes work again, but you have to | Luke Kanies | 2007-12-10 | 13 | -223/+220 | |
| | | | | | | | | set the 'node_terminus' setting to 'exec'. | |||||
* | | Fixing the rest of #948. My previous work was sufficient, | Luke Kanies | 2007-12-10 | 2 | -1/+20 | |
| | | | | | | | | | | | | except that I was not passing the interpolated value in to the hook, which meant the libdir was set to something like $vardir/lib. | |||||
* | | Fixing part of #948 -- per-setting hooks are now called | Luke Kanies | 2007-12-10 | 2 | -17/+85 | |
| | | | | | | | | | | when the configuration file is parsed. The bug is still there, but I'm getting closer. | |||||
* | | Fixing #941 -- calling pkg_info instead of info | Luke Kanies | 2007-12-10 | 1 | -1/+1 | |
| | | | | | | | | in the openbsd package provider. | |||||
* | | Fixing #923 (again). The host storage method was not | Luke Kanies | 2007-12-10 | 2 | -7/+6 | |
| | | | | | | | | | | | | correctly searching for the host, so it was creating a new host on each run, which is what was causing the conflict. | |||||
* | | Adding basic unit tests for type/user by DavidS from #948. | Luke Kanies | 2007-12-06 | 1 | -0/+58 | |
| | |