summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Cleaning up an exception.Luke Kanies2008-08-261-1/+5
| | | | | | | | | | | | | | | | | | Only adding option information when options are present. Signed-off-by: Luke Kanies <luke@madstop.com>
| * | FileServing Configurations now expect unqualified files.Luke Kanies2008-08-261-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fits in with the fact that the indirection requests split URIs and set the request key to an unqualified path rather than a fully-qualified path. The whole system is unqualified end-to-end, now, except when you're specifically asking for a full, local file name. Signed-off-by: Luke Kanies <luke@madstop.com>
| * | Fixing the fileserving terminus selection hook.Luke Kanies2008-08-261-22/+23
| | | | | | | | | | | | | | | | | | | | | It now uses the fact that the indirection request does URI parsing, rather than doing the parsing on its own. Signed-off-by: Luke Kanies <luke@madstop.com>
| * | Special-casing 'file' URIs in the indirection requests.Luke Kanies2008-08-261-0/+7
| | | | | | | | | | | | | | | | | | | | | These just get converted to full file paths, since we know they will never pass over the wire. Signed-off-by: Luke Kanies <luke@madstop.com>
| * | Dividing server/port configuration responsibility between the REST terminus ↵Luke Kanies2008-08-262-15/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and the indirection request. Previously, the REST terminus did all of the configuration, but it required rewriting the request key if it was a URI because you can't have a uri in a uri (i.e., you can't use http://host/puppet://host/dist/file). Now the request parses the URI and sets host/port/key/protocol appropriately, and the REST terminus has its own overrides and defaults so that subclasses like certificate classes can provide specific values. Signed-off-by: Luke Kanies <luke@madstop.com>
* | | Removing files that git wasn't smart enough to remote during a merge.Luke Kanies2008-09-235-904/+0
| | | | | | | | | | | | Signed-off-by: Luke Kanies <luke@madstop.com>
* | | Merge branch '0.24.x'Luke Kanies2008-09-2332-2453/+3208
|\ \ \ | |/ / |/| / | |/ | | | | | | | | | | | | Conflicts: lib/puppet/metatype/container.rb lib/puppet/metatype/instances.rb lib/puppet/metatype/metaparams.rb lib/puppet/metatype/relationships.rb lib/puppet/metatype/schedules.rb
| * Removing some code in Parameter that is unnecessary.Luke Kanies2008-09-232-6/+2
| | | | | | | | | | | | | | | | | | It's duplicated in Property, but was only ever called if the instance was Property -- in other words, the base class new about its subclass, but the subclass overrode that method any way. Signed-off-by: Luke Kanies <luke@madstop.com>
| * Fixed #1595 - Internally, Property#retrieve is no longer calledLuke Kanies2008-09-232-23/+6
| | | | | | | | when no 'should' value is available for a resource.
| * Only apply splay the first runAndrew Shafer2008-09-211-8/+8
| | | | | | | | Issue 1491
| * Add an append (+=) variable operator:Brice Figureau2008-09-215-716/+760
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The append variable operator can be used to append something to a variable defined in a parent scope, containing either a string or an array. The main use is to append array elements in classes to a variable globally defined in a node. Example: $ssh_users = ['brice', 'admin1'] class backup { $ssh_users += ['backup_operator'] ... } Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
| * Bug #1550 - Rework to avoid regressing rspec tests, add new rspec tests for ↵Paul Nasrat2008-09-202-10/+17
| | | | | | | | | | | | templatedir as a path Signed-off-by: Paul Nasrat <pnasrat@googlemail.com>
| * Allow a templatedir to be colon separated.Thom May2008-09-201-3/+15
| | | | | | | | | | Signed-off-by: Thom May <thom@clearairturbulence.org> Signed-off-by: Paul Nasrat <pnasrat@googlemail.com>
| * Fixed #1521 -- ldap user and group are now used with the default connectionLuke Kanies2008-09-171-1/+11
| | | | | | | | | | | | when available. Signed-off-by: Luke Kanies <luke@madstop.com>
| * Fixed #1572 -- file purging now fails if remote sources do not exist.Luke Kanies2008-09-161-0/+9
| | | | | | | | Signed-off-by: Luke Kanies <luke@madstop.com>
| * Fixing #1576 - moving all of the Puppet::Type code back into type.rb.Luke Kanies2008-09-1511-2123/+2100
| | | | | | | | Signed-off-by: Luke Kanies <luke@madstop.com>
| * Fixed issues with file descriptors leaking into subprocessesJames Turnbull2008-09-131-0/+1
| |
| * Fixed #1571 - Puppet::Util::binary returns incorrect resultsJames Turnbull2008-09-131-8/+3
| |
| * Fixed #1553 - Puppet and Facter cannot both install the plist module into ↵James Turnbull2008-09-135-476/+2
| | | | | | | | two different locations
| * Adjusted hpuxuseradd user provider to confine to HP-UX and fixed HP-UX user ↵James Turnbull2008-09-131-3/+4
| | | | | | | | provider path regression
| * Fixed #1566 - changed password property of the user typeJames Turnbull2008-09-131-0/+8
| |
| * Fixed debug messages in package type - thanks to Todd Zullinger for this fixJames Turnbull2008-09-121-2/+2
| |
| * Fixes #1455 - Adds HP-UX support for user typeJames Turnbull2008-09-061-0/+29
| |
| * Fixes #1551 puppetmaster.freshness xmlrpc call returns incorrect typeNigel Kersten2008-09-051-1/+1
| |
| * Fixes #1554 - Fix exception for undefined hostnameJames Turnbull2008-09-051-2/+4
| |
| * Runit service providerBrice Figureau2008-08-291-0/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This provider manages daemons running supervised by Runit[1]. It tries to detect the service directory, with by order of preference: * /service * /var/service * /etc/service The daemon directory should be placed in a directory that can be by default in: * /etc/sv * /var/lib/service or this can be overriden in the service resource parameters: service { "myservice": provider => "runit", path => "/path/to/daemons"; } This provider supports out of the box: * start/stop * enable/disable * restart * status [1]: http://smarden.sunsite.dk/runit/
| * Daemontools service providerBrice Figureau2008-08-291-0/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This provider manages daemons running supervised under D.J.Bernstein daemontools. It tries to detect the service directory, with by order of preference: * /service * /etc/service * /var/lib/svscan The daemon directory should be placed in a directory that can be by default in: * /var/lib/service * /etc or this can be overriden in the service resource parameters: service { "myservice": provider => "daemontools", path => "/path/to/daemons"; } This provider supports out of the box: * start/stop (mapped to enable/disable) * enable/disable * restart * status Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
* | Merge commit 'turnbull/0.24.x'Luke Kanies2008-08-2617-239/+244
|\|
| * Fixed #1488 - Moved individual functions out of functions.rb intoJames Turnbull2008-08-2613-217/+208
| | | | | | | | | | the lib/puppet/parser/functions directory. New functions should be created in this directory.
| * Fixed #1457 - case insensitive match for errorJames Turnbull2008-08-241-1/+1
| |
| * Fix leaking LoadedFile when adding templates to be watchedAndrew Shafer2008-08-231-13/+18
| |
| * id column is autogenerated by rails as a primary key, there is no needBrice Figureau2008-08-222-8/+17
| | | | | | | | | | | | | | to create an additional index on this column. This changeset contains the new schema and a migration. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
* | Adding parameter and URL support to the REST terminus.Luke Kanies2008-08-202-9/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | Previously, the server side correctly pulled parameters out of the query strings, but the REST terminus never passed them on. It does now, at least for finding and searching. It appears that at least WEBrick doesn't support parameters for anything other than forms and GET. I've also added the ability for the REST terminus to pull host/port information from the request key, if it's a URI. Signed-off-by: Luke Kanies <luke@madstop.com>
* | Merge branch '0.24.x'Luke Kanies2008-08-202-4/+41
|\|
| * Removed reference to namespaces from --genconfig documentationJames Turnbull2008-08-211-4/+0
| |
| * Fixed #1508 - Add HP-UX package provider.Mark Plaksin2008-08-201-0/+41
| |
* | Fixing the String format (fixes #1522).Luke Kanies2008-08-203-17/+16
| | | | | | | | | | | | | | | | | | The string format no longer provides any support methods, which means that I had to create to_multiple_s and from_multiple_s methods on the SSL classes. I created them in the base class and tested them just in the cert class. Signed-off-by: Luke Kanies <luke@madstop.com>
* | Removing dead-end file work as promised.Luke Kanies2008-08-203-179/+0
| | | | | | | | Signed-off-by: Luke Kanies <luke@madstop.com>
* | Adding files temporarily, since I've decided this work is a dead-end.Luke Kanies2008-08-203-0/+179
| | | | | | | | | | | | | | I'm merely adding these so that they're in the history if I decided to look at them again. Signed-off-by: Luke Kanies <luke@madstop.com>
* | Merge branch '0.24.x'Luke Kanies2008-08-1823-87/+229
|\| | | | | | | | | | | | | Conflicts: CHANGELOG test/util/posixtest.rb
| * Fix #1502 - abysmal storeconfig performance - part2Brice Figureau2008-08-171-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Resource parameters whose values are a resource reference (ie require, notify...) where always DELETEd/INSERTed because the code comparing resource reference compared object instances instead of their values (since Puppet::Parser::Resource::Reference doesn't override == ), leading to storeconfig performance issues. The correct fix would have been to define == in Puppet::Parser::Resource::Reference but that might introduce some side effects I don't know. Hence, the fix introduces a local compare() method that knows how to compare Puppet::Parser::Resource::Reference. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
| * Fix #1052 - abysmal storeconfig performance - part1Brice Figureau2008-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Resources whose references are of the form: Main::Sub1::Sub2 are extracted from the database under the form: Main::sub1::sub2 Puppet then fails to match them against compiled resources of same references which are capitalized as they should, and tries to overwrite them on every storeconfig run, leading to tons of cascading DELETE/INSERT, hurting performance. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
| * Fix #1510 - storeconfig fails with rails 2.1Brice Figureau2008-08-171-5/+5
| | | | | | | | | | | | | | | | This is a workaround. Since rails seems to have difficulties to map associations to Puppet classes, we explain it carefully what to expect. Changelog
| * Fixes #1274 - allow class names to start with numbersJames Turnbull2008-08-171-1/+1
| |
| * Fixed #1442 - replaced use of Facter for report titling with certnameJames Turnbull2008-08-161-7/+1
| |
| * Fixed $1456 - add proxy configuration to yum repoJames Turnbull2008-08-131-2/+18
| |
| * Fixing #1447 -- Replacing Puppet::PackageError with Puppet::Error.Luke Kanies2008-08-122-4/+4
| | | | | | | | Signed-off-by: Luke Kanies <luke@madstop.com>
| * Added tests for TemplateWrapper's use of Scope#to_hash.Luke Kanies2008-08-091-11/+10
| | | | | | | | | | | | We should deprecate the method_missing stuff in 0.25. Signed-off-by: Luke Kanies <luke@madstop.com>
| * Fixed #1457 - removed confine warningJames Turnbull2008-08-061-1/+1
| |
| * Fixed #1441 - Updated console coloursJames Turnbull2008-08-011-14/+22
| |